A fast, local-first "redirection engine" for !bang users with a few extra features ^-^
at v0.3.1 290 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}"], 10 maximumFileSizeToCacheInBytes: 3 * 1048576, 11 }, 12 }), 13 ], 14});