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', }), });