This commit is contained in:
Hadi
2026-03-07 14:23:16 +01:00
commit 2aa7a0abf1
777 changed files with 20307 additions and 0 deletions

17
astro.config.mjs Normal file
View File

@@ -0,0 +1,17 @@
// @ts-check
import { defineConfig } from "astro/config";
import tailwindcss from "@tailwindcss/vite";
import svelte from "@astrojs/svelte";
import node from "@astrojs/node";
// https://astro.build/config
export default defineConfig({
output: "server",
vite: {
plugins: [tailwindcss()],
},
integrations: [svelte()],
adapter: node({
mode: "standalone",
}),
});