Files
bincio-activity/site/astro.config.mjs
T
2026-03-29 15:51:39 +02:00

19 lines
505 B
JavaScript

import { defineConfig } from "astro/config";
import svelte from "@astrojs/svelte";
import tailwind from "@astrojs/tailwind";
export default defineConfig({
integrations: [svelte(), tailwind()],
devToolbar: { enabled: false },
output: "static",
// When hosting at a subdirectory (e.g. GitHub Pages project site), set:
// base: "/repo-name",
vite: {
optimizeDeps: {
include: ['maplibre-gl'],
esbuildOptions: { target: 'es2022' },
},
build: { target: 'es2022' },
},
});