我已经检查了两个命令,npm start
并且npm run start
都运行良好。我使用了create-react-app。但是要在CSS模块中进行配置更改,我可以运行,npm eject
但是会引发错误。
但是npm run eject
有效吗?我对为什么npm eject
不起作用感到困惑。我可以配置吗?
以下是我的package.json
:
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}