Compare commits

...

2 commits

Author SHA1 Message Date
Nathan Lamy
f3d5601d00 chore: fix CI env
All checks were successful
Deploy to Netlify / Deploy to Netlify (push) Successful in 1m27s
2025-08-19 23:32:02 +02:00
Nathan Lamy
6a8a791959 chore: fix last pwa error 2025-08-19 23:30:22 +02:00
2 changed files with 3 additions and 4 deletions

View file

@ -16,6 +16,7 @@ jobs:
VITE_SUPPORT_EMAIL: ${{ secrets.VITE_SUPPORT_EMAIL }} VITE_SUPPORT_EMAIL: ${{ secrets.VITE_SUPPORT_EMAIL }}
VITE_API_URL: ${{ secrets.VITE_API_URL }} VITE_API_URL: ${{ secrets.VITE_API_URL }}
VITE_TURNSTILE_SITE_KEY: ${{ secrets.VITE_TURNSTILE_SITE_KEY }} VITE_TURNSTILE_SITE_KEY: ${{ secrets.VITE_TURNSTILE_SITE_KEY }}
VITE_PUBLIC_VAPID_KEY: ${{ secrets.VITE_PUBLIC_VAPID_KEY }}
run: | run: |
npm --version && node --version npm --version && node --version
npm i -g pnpm npm i -g pnpm

View file

@ -4,10 +4,7 @@ export default {
}, },
includeAssets: [ includeAssets: [
"favicon.ico", "favicon.ico",
"favicon-96x96.png", "*.png",
"web-app-manifest-192x192.png",
"web-app-manifest-512x512.png",
"apple-touch-icon.png",
], ],
registerType: "autoUpdate", registerType: "autoUpdate",
manifest: { manifest: {
@ -33,4 +30,5 @@ export default {
], ],
}, },
injectRegister: "script", injectRegister: "script",
strategies: "generateSW",
}; };