You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using 0.4.2, I'd like to include a manifest.json file (for add-to-homescreen). So in index.html I add:
<link rel="manifest" href="/src/manifest.json">
And I create a src/manifest.json file. Everything compiles, but the generated HTML has:
<link rel="manifest" href="[object Object]">
Some investigation shows that this is because it has parsed the JSON file instead of converted it into a static asset like it does for PNGs. How can I force it to just treat it like a static file with no fancy processing?
The text was updated successfully, but these errors were encountered:
Using 0.4.2, I'd like to include a
manifest.json
file (for add-to-homescreen). So in index.html I add:<link rel="manifest" href="/src/manifest.json">
And I create a
src/manifest.json
file. Everything compiles, but the generated HTML has:<link rel="manifest" href="[object Object]">
Some investigation shows that this is because it has parsed the JSON file instead of converted it into a static asset like it does for PNGs. How can I force it to just treat it like a static file with no fancy processing?
The text was updated successfully, but these errors were encountered: