Select the types of activity you want to include in your feed.
1import { defineConfig } from "astro/config"; 2import scope from "astro-scope"; 3 4import purgecss from "astro-purgecss"; 5 6export default defineConfig({ 7 integrations: [scope(), purgecss()], 8 build: { 9 inlineStylesheets: "never", 10 }, 11});