chore: lint
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing

This commit is contained in:
2025-05-27 11:47:48 +02:00
parent e5665a24e7
commit 575cc28717
3 changed files with 50 additions and 45 deletions

View File

@ -23,9 +23,7 @@ export default defineConfig({
},
// add this to cache all the
// static assets in the public folder
includeAssets: [
"**/*",
],
includeAssets: ["**/*"],
useCredentials: true,
manifest: {
theme_color: "#eb5252",
@ -34,16 +32,16 @@ export default defineConfig({
scope: "/",
icons: [
{
"src": "/images/pwa-icon-256.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
src: "/images/pwa-icon-256.png",
sizes: "192x192",
type: "image/png",
purpose: "any maskable",
},
{
"src": "/images/pwa-icon-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
src: "/images/pwa-icon-512.png",
sizes: "512x512",
type: "image/png",
purpose: "any maskable",
},
],
},