in ReactJS by (6.2k points)

How do you tell React to build in Production mode and what will that do?

1 Answer

0 votes
by (6.2k points)

Ordinarily, you'd utilize Webpack's DefinePlugin strategy to set NODE_ENV to production. This will strip out things like prototype approval and additional notices. Over that, it's likewise a smart thought to minify your code in light of the fact that React utilizes Uglify's dead-code end to strip out advancement just code and remarks, which will radically diminish the measure of your package. 

Related questions

0 votes
asked Feb 24, 2021 in ReactJS by SakshiSharma (32.2k points)
...