Obonyo
Obonyo

Reputation: 161

Is it safe to delete the manifest.json file that comes bundled with create-react-app

I'm a newbie to React development. I have read that the manifest.json file contains information about a Web App, and it may be useful in some cases. What am asking, though, is if it's safe to delete it.

Upvotes: 7

Views: 12118

Answers (2)

Ajay Yadav
Ajay Yadav

Reputation: 1

yes,you delete manifest data which doesn't give any impact in your project

Upvotes: 0

Taxel
Taxel

Reputation: 4207

For information about what the manifest is for, this answer may help you but to answer your question:

Yes, you should be completely fine deleting the manifest.json as well as <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> in public/index.html, so long as you're fine with losing the benefits it provides linked above.

Upvotes: 7

Related Questions