vite-plugin-pwa: enable production sw for staging
All checks were successful
/ depoly (push) Successful in 1m21s

This commit is contained in:
thislight 2024-10-24 23:50:57 +08:00
parent b22ac67c3a
commit 4075c41942
No known key found for this signature in database
GPG key ID: A50F9451AC56A63E

View file

@ -64,7 +64,7 @@ export default defineConfig(({ mode }) => ({
strategies: "injectManifest",
registerType: "autoUpdate",
devOptions: {
enabled: mode !== "production",
enabled: !["production", "staging"].includes(mode),
},
srcDir: "src/serviceworker",
filename: "main.ts",