当前位置: 首页 > 工具软件 > status-react > 使用案例 >

create-react-app执行npm run eject报错

云建木
2023-12-01

在使用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相关配置了。

 类似资料: