From e1dd96a97f4b2c0946789769ef4ef8462c4adb68 Mon Sep 17 00:00:00 2001 From: Francisco Pessano Date: Thu, 11 Sep 2025 00:29:14 -0300 Subject: [PATCH] chore: remove PWA plugin and configuration from vite config --- apps/web/vite.config.ts | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/apps/web/vite.config.ts b/apps/web/vite.config.ts index bf6d024..b13d3f7 100644 --- a/apps/web/vite.config.ts +++ b/apps/web/vite.config.ts @@ -3,27 +3,12 @@ import tailwindcss from "@tailwindcss/vite"; import { tanstackRouter } from "@tanstack/router-plugin/vite"; import react from "@vitejs/plugin-react"; import { defineConfig } from "vite"; -import { VitePWA } from "vite-plugin-pwa"; export default defineConfig({ plugins: [ tailwindcss(), tanstackRouter({}), react(), - VitePWA({ - registerType: "autoUpdate", - manifest: { - name: "Reflecto", - short_name: "Reflecto", - description: "Reflecto - PWA Application", - theme_color: "#0c0c0c", - }, - pwaAssets: { disabled: false, config: true }, - devOptions: { enabled: true }, - workbox: { - maximumFileSizeToCacheInBytes: 3000000, - }, - }), ], resolve: { alias: {