- From: Braider Perez <notifications@github.com>
- Date: Fri, 28 Oct 2022 15:40:15 -0700
- To: w3c/manifest <manifest@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Friday, 28 October 2022 22:40:28 UTC
```
Manifest: property 'start_url' ignored, URL is invalid.
Manifest: property 'src' ignored, URL is invalid.
```
I got this two warning in console, but it only appears in when I build, and not in localhost
```js
// _manifest.json_
{
"short_name": "Quick weather",
"name": "Weather app PWA",
"description": "Search the weather for any place of the world quickly",
"icons": [
{
"src": "./images/icon-quick-weather.png",
"type": "image/png",
"sizes": "460x460"
},
{
"src": "./images/icon-quick-weather(180x180).png",
"type": "image/png",
"sizes": "180x180"
},
{
"src": "./images/icon-quick-weather(512x512).png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#3399ff",
"background_color": "#fff"
}
```
**Folder structure**

--
Reply to this email directly or view it on GitHub:
https://github.com/w3c/manifest/issues/1059
You are receiving this because you are subscribed to this thread.
Message ID: <w3c/manifest/issues/1059@github.com>
Received on Friday, 28 October 2022 22:40:28 UTC