繁体   English   中英

将我的Rails应用程序部署到heroku时遇到问题“错误:找不到模块'@ rails / webpacker'”

[英]Having trouble deploying my rails app to heroku “Error: Cannot find module '@rails/webpacker'”

我正在使用Webpack和babel处理已合并的JavaScript的Rails应用程序,每次尝试将其部署到heroku时,都会收到此错误“错误:找不到模块'@ rails / webpacker'”。 我已经验证了webpacker已安装并包含在我的Gemfile ,甚至尝试更新。 我不确定还有什么不对劲,也无法在此处或在heroku故障排除中找到修复程序。 错误如下所示:

remote:        Webpacker is installed 🎉 🍰
remote:        Using /tmp/build_8b49575f969275dcaa6d475e06d48642/config/webpacker.yml file for setting up webpack paths
remote:        Compiling…
remote:        Compilation failed:
remote:        module.js:540
remote:        throw err;
remote:        ^
remote:        Error: Cannot find module '@rails/webpacker'
remote:        at Function.Module._resolveFilename (module.js:538:15)
remote:        at Function.Module._load (module.js:468:25)
remote:        at Module.require (module.js:587:17)
remote:        at require (internal/module.js:11:18)

remote:        at Object.<anonymous> (/tmp/build_8b49575f969275dcaa6d475e06d48642/config/webpack/environment.js:1:87)
remote:        at Module._compile (module.js:643:30)
remote:        at Object.Module._extensions..js (module.js:654:10)
remote:        at Module.load (module.js:556:32)
remote:        at tryModuleLoad (module.js:499:12)
remote:        at Function.Module._load (module.js:491:3)
remote:  !
remote:  !     Precompiling assets failed.
remote:  !
remote:  !     Push rejected, failed to compile Ruby app.
remote:
remote:  !     Push failed
remote: Verifying deploy...
remote:
remote: !       Push rejected to guarded-falls-58657.
remote:
To https://git.heroku.com/guarded-falls-58657.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://git.heroku.com/guarded-falls-
58657.git'

你会尝试吗?

heroku buildpacks:clear
heroku buildpacks:set heroku/nodejs
heroku buildpacks:add heroku/ruby

https://github.com/rails/webpacker/issues/739#issuecomment-327546884

似乎Ruby的默认buildpack具有一些过时的与节点相关的引擎。 希望尽快修复。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM