I have following error getting on cosole...
Failed to load resource: net::ERR_NAME_NOT_RESOLVED
Failed to load resource: the server responded with a status of 400 (Bad Request)
Manifest: Line: 1, column: 1, Syntax error
Full of my browser screen is white and no data shwing
Following is my manifest.json file
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
Here is the link tag on my indext.html file
<link rel="manifest" crossorigin="use-credentials" href="%PUBLIC_URL%/manifest.json" />
I have done lists of work but problem still remainung...
delete
node_modulesandpackage.lock.jsonfile and runnpm installin my terminaladd
crossorigin="use-credentials"into link tag on indext.html of public folderedited follwing object on
manifest.json{ "start_url": "./", "display": "standalone", "theme_color": "#000000", "background_color": "#ffffff" }
but nothing is solved yet....