Fix: added node adapter to the page

This commit is contained in:
2026-04-04 19:15:15 -05:00
parent e9d72e4022
commit 6084d6a092
3 changed files with 562 additions and 1097 deletions

View File

@@ -1,5 +1,13 @@
// @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",
}),
});