A fast, local-first "redirection engine" for !bang users with a few extra features ^-^
5
fork

Configure Feed

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

at main 18 lines 348 B view raw
1import { defineConfig } from "vite"; 2import { VitePWA } from "vite-plugin-pwa"; 3 4export default defineConfig({ 5 build: { 6 target: "esnext", 7 sourcemap: false, 8 }, 9 plugins: [ 10 VitePWA({ 11 registerType: "autoUpdate", 12 workbox: { 13 globPatterns: ["**/*.{js,css,html,svg}"], 14 maximumFileSizeToCacheInBytes: 3 * 1048576, 15 }, 16 }), 17 ], 18});