Select the types of activity you want to include in your feed.
1import react from "@vitejs/plugin-react"; 2import { defineConfig } from "vite"; 3 4export default defineConfig({ 5 appType: "spa", 6 plugins: [react()], 7 resolve: { 8 alias: { 9 "~": new URL("./src", import.meta.url).pathname, 10 }, 11 }, 12});