my website, hosted on wisp.place
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 4a8d3f176971d2b545dfb39e74d4eaffc75d4438 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});