Experiment to rebuild Diffuse using web applets.
0

Configure Feed

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

at broadcast 354 B View raw
1import { defineConfig } from "astro/config"; 2import scope from "astro-scope"; 3import wasm from "vite-plugin-wasm"; 4 5import purgecss from "astro-purgecss"; 6 7export default defineConfig({ 8 integrations: [scope(), purgecss()], 9 build: { 10 inlineStylesheets: "never", 11 }, 12 vite: { 13 plugins: [wasm()], 14 server: { 15 hmr: false, 16 }, 17 }, 18});