summaryrefslogtreecommitdiff
path: root/examples/hackernews/astro.config.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hackernews/astro.config.mjs')
-rw-r--r--examples/hackernews/astro.config.mjs10
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/hackernews/astro.config.mjs b/examples/hackernews/astro.config.mjs
new file mode 100644
index 000000000..68ba7fac5
--- /dev/null
+++ b/examples/hackernews/astro.config.mjs
@@ -0,0 +1,10 @@
+import { defineConfig } from 'astro/config';
+import node from '@astrojs/node';
+
+// https://astro.build/config
+export default defineConfig({
+ output: 'server',
+ adapter: node({
+ mode: 'standalone',
+ }),
+});