ruby-on-rails - Rails 5.2 和 webpacker 3.4.3 : Assets not compiled when deployed to Heroku

标签 ruby-on-rails heroku webpack webpacker

我刚刚将 Rails 应用程序从 5.1.6 升级到 5.2,并借此机会将 Webpacker 从 2.0 升级到 3.4.3。

现在,当我将应用程序推送到 Heroku 时,我收到以下错误(vendor.js 是 /app/javascript/packs 中的文件之一,他在我的 application.html.erb 模板中由 javascript_pack_tag 'vendor' 调用):

ActionView::Template::Error (Webpacker can't find vendor.js in /app/public/packs/manifest.json. Possible causes: 
1. You want to set webpacker.yml value of compile to true for your environment 
   unless you are using the `webpack -w` or the webpack-dev-server. 
2. webpack has not yet re-run to reflect updates. 
3. You have misconfigured Webpacker's config/webpacker.yml file. 
4. Your webpack configuration is not creating a manifest. 
Your manifest contains: 
{ 
} 
):

事实上,当我检查 /public 的内容时我可以看到 /packs应该包含我的 Assets 的目录丢失了。

我可以看到在 Heroku 的构建阶段, Assets 被预编译:
Running: rake assets:precompile
       yarn install v1.5.1
       [1/4] Resolving packages...
       [2/4] Fetching packages...
       info fsevents@1.1.2: The platform "linux" is incompatible with this module.
       info "fsevents@1.1.2" is an optional dependency and failed compatibility check. Excluding it from installation.
       info fsevents@1.1.3: The platform "linux" is incompatible with this module.
       info "fsevents@1.1.3" is an optional dependency and failed compatibility check. Excluding it from installation.
       [3/4] Linking dependencies...
       warning "@rails/webpacker > postcss-cssnext@3.1.0" has unmet peer dependency "caniuse-lite@^1.0.30000697".
       warning " > coffee-loader@0.8.0" has unmet peer dependency "coffeescript@>= 1.8.x".
       [4/4] Building fresh packages...
       Done in 36.65s.
       Webpacker is installed 🎉 🍰
       Using /tmp/build_d6c1dd8314f746d28a2469f2a01ec4ed/config/webpacker.yml file for setting up webpack paths
       Compiling…
       Compiled all packs in /tmp/build_d6c1dd8314f746d28a2469f2a01ec4ed/public/packs
       Asset precompilation completed (119.53s)
       Cleaning assets
       Running: rake assets:clean

我的 /config/webpacker.yml文件如下
default: &default
  source_path: app/javascript
  source_entry_path: packs
  public_output_path: packs
  cache_path: tmp/cache/webpacker

  # Additional paths webpack should lookup modules
  # ['app/assets', 'engine/foo/app/assets']
  resolved_paths: []

  # Reload manifest.json on all requests so we reload latest compiled packs
  cache_manifest: false

  extensions:
    - .jsx
    - .js
    - .sass
    - .scss
    - .css
    - .module.sass
    - .module.scss
    - .module.css
    - .png
    - .svg
    - .gif
    - .jpeg
    - .jpg

development:
  <<: *default
  compile: true

  # Reference: https://webpack.js.org/configuration/dev-server/
  dev_server:
    https: false
    host: localhost
    port: 3035
    public: localhost:3035
    hmr: false
    # Inline should be set to true if using HMR
    inline: true
    overlay: true
    compress: true
    disable_host_check: true
    use_local_ip: false
    quiet: false
    headers:
      'Access-Control-Allow-Origin': '*'
    watch_options:
      ignored: /node_modules/


test:
  <<: *default
  compile: true

  # Compile test packs to a separate directory
  public_output_path: packs-test

production:
  <<: *default

  # Production depends on precompilation of packs prior to booting for performance.
  compile: false

  # Cache manifest.json for performance
  cache_manifest: true

如果我改变 compile: falsecompile: trueproduction: , 编译有效,但没有缩小和 gzip 压缩。

我的 /webpack/production.js是:
const { environment } = require('@rails/webpacker')

module.exports = environment

对此的任何帮助将不胜感激!

更新

我应该补充一点,在本地编译我的 Assets
NODE_ENV=production ./bin/webpack
工作得很好。

最佳答案

this回答

# config/environments/production.rb
config.public_file_server.enabled=true` # ENV['RAILS_SERVE_STATIC_FILES'].present? 

关于ruby-on-rails - Rails 5.2 和 webpacker 3.4.3 : Assets not compiled when deployed to Heroku,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50000132/

相关文章:

ruby-on-rails - 在 ruby​​ 中解析 json 以进行排序、过滤等

ruby-on-rails - 如何使用 Rails 在 PostgreSQL 中将时间列更改为整数列?

ruby-on-rails - rails 中的下拉列表

ruby-on-rails - 我可以在非嵌套形式中使用 _destroy 属性吗?

javascript - bootstrap 下拉菜单在 Heroku 上不起作用

javascript - rails/网络包 : Can't access a JS library

typescript - 是否可以在 TypeScript 导入中指定 webpack 加载程序?

ruby-on-rails - Heroku:将 Rails 应用程序推送到 Heroku 时出错,Heroku 找不到 Rails 应用程序

ruby - IndexTank 自动完成 : modifying the autocomplete field text for each result returned

javascript - 有没有办法设置 webpack 配置来加载特定的 core-js 条目