Add PWA support with service worker, manifest, and icons
All checks were successful
Deploy / deploy (push) Successful in 2s

This commit is contained in:
M1ngdaXie
2026-03-27 18:37:10 -07:00
parent fc1eb2040c
commit cf64244b21
5 changed files with 68 additions and 3 deletions

24
manifest.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "梅子的成语填字",
"short_name": "成语填字",
"description": "每天练习成语填字,越练越强!",
"start_url": "/",
"display": "standalone",
"background_color": "#1a1a2e",
"theme_color": "#1a1a2e",
"orientation": "portrait",
"icons": [
{
"src": "icons/icon-192.png?v=3",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "icons/icon-512.png?v=3",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
}
]
}