A fast, local-first "redirection engine" for !bang users with a few extra features ^-^
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});