feat: Configure Astro for Node.js server output with standalone adapter and add a start script.

This commit is contained in:
2026-03-17 00:09:42 -03:00
parent 5aebd44753
commit 64550a7904
3 changed files with 201 additions and 2 deletions

View File

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