aboutsummaryrefslogtreecommitdiff
path: root/examples/hackernews/astro.config.mjs
blob: bf6f1a022825f04d044369f1ad0adbede9f3677e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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',
	}),
});