website/astro.config.ts
ndsboy 9f5455c5ec
All checks were successful
deploy / deploy (push) Successful in 48s
feat: add highlighted project
2025-09-13 16:24:53 +00:00

21 lines
487 B
TypeScript

import sitemap from "@astrojs/sitemap"
import tailwindcss from "@tailwindcss/vite"
import { defineConfig, passthroughImageService } from "astro/config"
export default defineConfig({
site: "https://swablab.de",
base: "/",
server: {
host: true,
},
integrations: [sitemap()],
image: {
domains: ["directus.swablab.de", "files.mastodon.social", "wiki.swablab.de"],
service: passthroughImageService(),
},
vite: {
plugins: [
tailwindcss(),
],
},
})