I have been instructed to put some instructions inside the webpack.config.js file. However in my create-react-app project I cannot find that file. Currently the available answer on StackOverFlow requires ejecting the project which I think will break my project. Is it possible to use webpack.config.js inside a create-react-app project without ejecting? Where is the webpack.config.js file? or where should I put it?
I have been instructed to put some instructions inside the webpack.config.js file. However in my create-react-app project I cannot find that file. Currently the available answer on StackOverFlow requires ejecting the project which I think will break my project. Is it possible to use webpack.config.js inside a create-react-app project without ejecting? Where is the webpack.config.js file? or where should I put it?
Share asked Oct 7, 2019 at 12:11 prestonpreston 4,36710 gold badges54 silver badges89 bronze badges 1- Create react app suggests this article as a way to configure your app without having to eject (Source) – apokryfos Commented Oct 7, 2019 at 12:22
3 Answers
Reset to default 4Webpack config used by create-react-app is here: https://github./facebook/create-react-app/tree/master/packages/react-scripts/config
create-react-app hides the config files from you. If you want to modify them, you have to run npm run eject
. This will place them under the config/
folder.
Please read this before you do this, as this isn't a reversible action: https://github./facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#npm-run-eject
You would probably want to use Craco. It allows you to override create-react-app configurations. Other than that eject
is a good option and it doesn't suppose to break your app