I am using the react-app-rewired to package the project, now I did not want to use react-app-rewired. I have run this command to eject the react-app-rewired:
yarn eject
this is the legacy package.json config:
"scripts": {
"start": "react-app-rewired start --host 0.0.0.0",
"build": "CI=false && react-app-rewired build",
"test": "react-app-rewired test"
},
after eject, I could not use the legacy command to package the project now. what should I do to package the eject project? config then webpack again? install the webpack-cli?