diff options
Diffstat (limited to 'web/astro.config.mjs')
| -rw-r--r-- | web/astro.config.mjs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/web/astro.config.mjs b/web/astro.config.mjs index 515ddf0..c0fd9ad 100644 --- a/web/astro.config.mjs +++ b/web/astro.config.mjs @@ -3,7 +3,13 @@ import { defineConfig } from 'astro/config'; import react from '@astrojs/react'; +import node from '@astrojs/node'; + // https://astro.build/config export default defineConfig({ - integrations: [react()] + integrations: [react()], + + adapter: node({ + mode: 'standalone' + }) }); |
