This commit is contained in:
2024-08-19 16:10:32 -05:00
parent de7031f447
commit a7bd008bbc
3 changed files with 170 additions and 2 deletions

View File

@@ -1,4 +1,11 @@
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"
})
});