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 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});