feat(frontend): Add Progressive Web App (PWA) support. Includes a service worker for offline capabilities, a web manifest, and icons for a native-like, installable app experience

This commit is contained in:
2025-07-28 19:46:46 +08:00
parent 59d0ae2a88
commit d85b531e24
8 changed files with 74 additions and 3 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"name": "Email Unlimit",
"short_name": "EmailUnlimit",
"icons": [
{
"src": "icons/icon.svg",
"sizes": "any",
"type": "image/png"
}
],
"start_url": "/",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#000000"
}