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
At the moment i just have a post build step that copies my own manifest.json file over the default one. I wondered if there was any way to generate it from the package.json or similar.
Hm, can you just modify public/manifest.json? Apart from index.html, I think that everything from public is just copied over with no magic, and you're free to modify anything already there as you see fit.
Activity
heyimalex commentedon Feb 22, 2018
What are you expecting to happen? I think that yeah
public/manifest.json
is copied directly tobuild/manifest.json
.ri-ch commentedon Feb 22, 2018
At the moment i just have a post build step that copies my own manifest.json file over the default one. I wondered if there was any way to generate it from the package.json or similar.
heyimalex commentedon Feb 22, 2018
Hm, can you just modify
public/manifest.json
? Apart fromindex.html
, I think that everything frompublic
is just copied over with no magic, and you're free to modify anything already there as you see fit.Timer commentedon Mar 5, 2018
Modify the file in
public/manifest.json
; if you need to modify it, a Node script in yourpostbuild
npm-script would be the best option.