How to build a production version of React without minification?

To change the webpack config and build scripts you have either to eject from create-react-app (i would not recommend this step, as it breaks future compatibility) or use tools like rewire to override some settings Take a look at this. https://github.com/timarney/react-app-rewired I personally used just rewire npm i rewire –save-dev Here is a sample config … Read more