Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Download error or resource isn't a valid image

Getting Error while trying to use the following icon from the Manifest: http://localhost:3000/logo192.png (Download error or resource isn't a valid image) from console?

import React from 'react';
import Logo from '../Images/logo192.png';

<div>
<img src={Logo} style={{width: '80px', height: '80px'}} alt='react logo' />
</div>

Example of image being passed through above.

like image 708
Ben Johnson Avatar asked Sep 02 '19 21:09

Ben Johnson


1 Answers

Remove the following entry from the manifest.json file:

{
  "src": "logo192.png",
  "type": "image/png",
  "sizes": "192x192"
},
like image 102
babs Avatar answered Nov 10 '22 04:11

babs