website/astro.config.ts
ndsboy 4bca29d3c3
Some checks are pending
Build Astro / 🧪 Astro check (push) Waiting to run
initial commit
2025-02-22 16:59:06 +00:00

16 lines
419 B
TypeScript

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