在使用
react
的脚手架create-react-app
的时候,我们发现目录中是没有webpack
的配置文件的,当然你可以在node_modules/react-scripts/config
下找到webpack.config.dev.js
文件进行修改,但是修改起来非常不便。
react
官方也提供一种方式来暴露配置文件,执行以下语句:
npm run eject
但是这时候会发现终端有报错
Remove untracked files, stash or commit any changes, and try again.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! test@0.1.0 eject: `react-scripts eject`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the test@0.1.0 eject script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\lenovo\AppData\Roaming\npm-cache\_logs\2018-11-01T04_03_50_129Z-debug.log
这是什么情况呢?因为脚手架默认添加.gitgnore
文件,但是却没有本地仓库,我们只要手动创建一个本地git
仓库即可。按照以下命令创建:
git init
git add .
git commit -m 'create git-local'
执行完以上操作,你再执行npm run eject
就会发现项目中就暴露出webpack
相关配置了。