mirror of
https://github.com/anotherhadi/default-creds.git
synced 2026-04-02 03:22:10 +02:00
18 lines
381 B
JavaScript
18 lines
381 B
JavaScript
// @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",
|
|
}),
|
|
});
|