pwa because why not

This commit is contained in:
Theo Browne
2025-02-15 18:03:21 -08:00
parent 3165c3dccb
commit 34f64869c0
3 changed files with 3248 additions and 2 deletions

10
vite.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from "vite";
import { VitePWA } from "vite-plugin-pwa";
export default defineConfig({
plugins: [
VitePWA({
registerType: "autoUpdate",
}),
],
});