Files for my website bwc9876.dev
0
fork

Configure Feed

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

at 1240bd8aee8f17727964bc8df3cd66dbc82973e8 17 lines 416 B view raw
1import { defineConfig } from "astro/config"; 2import mdx from "@astrojs/mdx"; 3import image from "@astrojs/image"; 4import sitemap from "@astrojs/sitemap"; 5 6// https://astro.build/config 7export default defineConfig({ 8 site: "https://bwc9876.dev", 9 compressHTML: true, 10 integrations: [ 11 mdx(), 12 image({ 13 serviceEntryPoint: "@astrojs/image/sharp" 14 }), 15 sitemap() 16 ] 17});