Hello i'm getting this error:
Site cannot be installed: no matching service worker detected. You may need to reload the page, or check that the service worker for the current page also controls the start URL from the manifest
This is my manifest.json:
{
"name": "SIMIC project",
"short_name": "simic",
"icons": [{
"src": "images/simic-bn.png",
"type": "image/png",
"sizes": "32x32"
},
{
"src": "images/simic-bn.png",
"type": "image/png",
"sizes": "144x144"
}],
"start_url": "/wta/",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#1e88e5"
}
This is my url: "mydomain:8889/wta/" and this is my code structure:
-mydomain
---wta
------css/
------font/
------images/
------js/
------index.html
------manifest.json
What am i missing? THX