Files
astro/examples/hackernews/astro.config.mjs
Emanuele Stoppa c2a347d8a6 chore(deps): upgrade development tools (#14040)
Co-authored-by: alexanderniebuhr <45965090+alexanderniebuhr@users.noreply.github.com>
2025-07-24 12:31:23 +01:00

13 lines
221 B
JavaScript

// @ts-check
import node from '@astrojs/node';
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
output: 'server',
adapter: node({
mode: 'standalone',
}),
});