website/astro.config.ts
ndsboy 4830cebc70
All checks were successful
deploy / deploy (push) Successful in 2m11s
feat: remove todo
2025-02-26 21:38:43 +00:00

19 lines
511 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(),
},
redirects: {
"/todo": "https://directus.swablab.de/admin/content/tasks_general",
},
})