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

1646
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -9,7 +9,8 @@
"astro": "astro"
},
"dependencies": {
"astro": "^5.17.1",
"@astrojs/node": "^10.0.4",
"astro": "^6.1.3",
"lenis": "^1.3.17",
"nodemailer": "^8.0.1"
},