Add frontend deploy scripts

This commit is contained in:
2024-10-31 12:54:08 +01:00
parent 329381ad10
commit 024b5d5b3d
6 changed files with 184 additions and 0 deletions

View File

@@ -3,8 +3,14 @@ import { defineConfig } from 'astro/config';
import tailwind from "@astrojs/tailwind";
import node from "@astrojs/node";
// https://astro.build/config
export default defineConfig({
output: "server",
integrations: [tailwind()],
adapter: node({
mode: "standalone",
}),
});