ruby-on-rails – Heroku构建在uglifier上失败

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Heroku构建在uglifier上失败前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的最小应用程序在本地运行,我没有捆绑错误.然而,当我推送到heroku时,构建在资产期间失败:预编译步骤:
...
Bundle completed (3.24s)
Cleaning up the bundler cache.
-----> Preparing app for Rails asset pipeline
Running: rake assets:precompole
rake aborted!
LoadError: cannot load such file -- uglifier
(in /tmp/build_.../app/assets/javascripts/application.js)

笔记:
我没有在本地使用uglifier宝石
我没有一个文件应用程序/ assets / javascripts / application.js

我已经尝试过这些Gemfile解决方案:
A)加入uglifier宝石
B)向资产组添加增量
C)从Gemfile中完全删除uglifier,并卸载所有版本

下一步是什么?

@H_404_16@解决方法
在config / environments / production.rb中注释这一行
config.assets.js_compressor = :uglifier
原文链接:https://www.f2er.com/ruby/266830.html

猜你在找的Ruby相关文章