21 lines
468 B
TypeScript
21 lines
468 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"],
|
|
service: passthroughImageService(),
|
|
},
|
|
vite: {
|
|
plugins: [
|
|
tailwindcss(),
|
|
],
|
|
},
|
|
})
|