There is already the react-scripts-rewired package that allows for custom code to be added to the webpack config.
Is there any was of changing the default paths without running eject.
For example changing build to release or changing src to source.
The paths variable provided to webpack.config.extend.js is not the version used required by build.js so it is not modified throughout the app. Only locally.
There is already the
react-scripts-rewiredpackage that allows for custom code to be added to the webpack config.Is there any was of changing the default paths without running
eject.For example changing
buildto release or changingsrctosource.The paths variable provided to
webpack.config.extend.jsis not the version used required bybuild.jsso it is not modified throughout the app. Only locally.