簡體   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