Icone app

This commit is contained in:
2026-05-01 19:41:41 +02:00
parent af07b6f266
commit 2c6ecf574c
10 changed files with 85 additions and 19 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 268 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 289 KiB

View File

@@ -9,13 +9,13 @@
"theme_color": "#2563eb",
"icons": [
{
"src": "/icons/professeur-top-192.png",
"src": "/icons/professeur-top-install-v2-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/icons/professeur-top-512.png",
"src": "/icons/professeur-top-install-v2-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"

9
frontend/public/sw.js Normal file
View File

@@ -0,0 +1,9 @@
self.addEventListener('install', () => {
self.skipWaiting()
})
self.addEventListener('activate', (event) => {
event.waitUntil(self.clients.claim())
})
self.addEventListener('fetch', () => {})