Add PWA support with service worker, manifest, and offline page

This commit is contained in:
dhanabalan
2025-11-04 09:44:37 +05:30
parent f47f5182a2
commit aed8c36089
5 changed files with 223 additions and 0 deletions

16
public/manifest.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "Laravel PWA",
"short_name": "LPT",
"background_color": "#6777ef",
"display": "standalone",
"description": "A Progressive Web Application setup for Laravel projects.",
"theme_color": "#6777ef",
"start_url": "/",
"icons": [
{
"src": "logo.png",
"sizes": "512x512",
"type": "image/png"
}
]
}