diff options
Diffstat (limited to 'examples/hackernews/astro.config.mjs')
-rw-r--r-- | examples/hackernews/astro.config.mjs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/hackernews/astro.config.mjs b/examples/hackernews/astro.config.mjs new file mode 100644 index 000000000..bf6f1a022 --- /dev/null +++ b/examples/hackernews/astro.config.mjs @@ -0,0 +1,11 @@ +// @ts-check +import { defineConfig } from 'astro/config'; +import node from '@astrojs/node'; + +// https://astro.build/config +export default defineConfig({ + output: 'server', + adapter: node({ + mode: 'standalone', + }), +}); |