找不到module:错误:无法解析“@material-ui/core/styles”(部署到 heroku 时)

IT技术 reactjs heroku
2021-05-19 17:33:27

我有一个react应用程序并尝试将其部署到 Heroku 并在运行时 git push heroku master

找不到module:错误:无法解析“@material-ui/core/styles”

我搜索了类似的问题并安装了最新版本的 npm、node 和npm install @material-ui/coremetaria -ui,我也尝试过..没有用。

这是完整的错误日志文件

-----> 构建成功!=====> 下载 Buildpack:https : //github.com/mars/create-react-app-inner-buildpack.git =====> 检测到的框架:React.js (create-react-app) 编写static.json支持 create-react-app 启用运行时环境变量 amusement-parks-europe@0.1.0 build /tmp/build_a49639db14111a3c4e29b2f3e9e25c49 react-scripts build 创建优化的生产构建...编译失败。找不到module:错误:无法解析'/tmp/build_a49639db14111a3c4e29b2f3e9e25c49/src' npm ERR 中的'@material-ui/core/styles'!代码 ELIFECYCLE npm ERR!错误号 1 npm 错误号!游乐园-欧洲@0.1.0 构建:react-scripts build npm 错误!退出状态 1 npm ERR!npm 错误!在 amusement-parks-europe@0.1.0 构建脚本中失败。npm 错误!这可能不是 npm 的问题。上面可能有额外的日志输出。npm 错误!可以在以下位置找到此运行的完整日志:npm ERR!/app/.npm/_logs/2018-10-08T20_29_28_807Z-debug.log !推送被拒绝,无法编译 React.js (create-react-app) 多应用程序。推送失败

并且可以使用 google Api在 github react app上找到该项目

感谢您的帮助,我尝试了很多想法但没有解决方案。

2个回答

根据@samokasha 的回答,问题已解决,解决方案是使用 npm install @material-ui/core --save

我之前使用过相同的命令,但我错过了 --save

谢谢您的帮助。

看起来您的 package.json 文件不包含 material-ui。尝试'npm i -s @material-ui/core'