this repo has no description
0
fork

Configure Feed

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

at main 14 lines 336 B view raw
1import { defineConfig } from "vite"; 2import { VitePWA } from "vite-plugin-pwa"; 3 4export default defineConfig({ 5 plugins: [ 6 VitePWA({ 7 registerType: "autoUpdate", 8 workbox: { 9 globPatterns: ["**/*.{js,css,html}", "assets/inter*.woff2"], 10 maximumFileSizeToCacheInBytes: 3 * 1048576, 11 }, 12 }), 13 ], 14});