import { defineConfig } from "astro/config"; import tailwindcss from "@tailwindcss/vite"; import sitemap from "@astrojs/sitemap"; import rehypeAutolinkHeadings from "rehype-autolink-headings"; import rehypeSlug from "rehype-slug"; export default defineConfig({ site: "https://thilohohlt.com", prefetch: { prefetchAll: true, }, vite: { plugins: [tailwindcss()], }, markdown: { shikiConfig: { theme: "github-dark", }, rehypePlugins: [ rehypeSlug, [ rehypeAutolinkHeadings, { behavior: "wrap", }, ], ], }, integrations: [sitemap()], });