rzk666
rzk666

Reputation: 223

Caveats of running eject on create-react-app?

I currently started a new project using create-react-app, but I'd like to add some minor custom configurations to my webpack config. (automatically address .scss files as .module.scss, etc)

As far as I learned, the only way to do that it running eject, which would allow me to configure babel\webpack myself.

I was wondering, what caveats could that have? basically, why WOULDN'T I wan't to run eject?

Thanks!

Upvotes: 0

Views: 163

Answers (1)

Mechanic
Mechanic

Reputation: 5380

DO it, and see it for yourself, create new project in another directory and experiment with it; eject make things look a little more complicated, but it's OK, its like taking a look inside the hardware of your computer.

However if your project directory is under version control, you can reverse the eject too

Upvotes: 1

Related Questions