I have a file named manifest.json, and I included it in my HTML using
<link rel="manifest" href="./manifest.json">
.
Despite everything seeming correct, Chrome developer tools are unable to detect my manifest file!
This is the content of my manifest.json:
{
"name": "Arman News",
"short_name": "Ar News",
"description": "This is my first attempt at creating a PWA website.",
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone",
"Scope": "/",
"start_url": ".",
"icons": [
{
"src": "img/icons/Icon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "img/icons/Icon-512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"splash_pages": null
}