my website, hosted on wisp.place
at 7ada081659948db5cf1a4d0e3374cc71a33eefc3 15 lines 284 B view raw
1import { defineConfig } from "astro/config"; 2import sitemap from "@astrojs/sitemap"; 3 4export default defineConfig({ 5 site: "https://devins.page", 6 integrations: [sitemap()], 7 markdown: { 8 shikiConfig: { 9 themes: { 10 light: "light-plus", 11 dark: "dark-plus", 12 }, 13 }, 14 }, 15});