It's a simple question..do webapps created with create-react-app (without modifying dependencies like webpack...) do well if shiped to production? If not can you point me to any post or video that talks about this ?
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (2)
Not sure about performance, but CRA can be pretty bad if you care about things like SEO or your app working without JavaScript enabled. That's where Next.js and/or Gatsby.js come in. Next.js also gives you other neat features like code-splitting which as far as I know are not included in CRA. Not to say that CRA is awful or anything, I do have a couple of hosted apps made with pure CRA working just fine in "production", but using one of these frameworks definitely gives your app a nice boost.
You no longer need to eject react apps to modify dependencies in most cases you can use CRACO.
dev.to/kildareflare/how-to-modify-...