如何使用 activeadmin 预编译资产

How to precompile assets with activeadmin

我的 production.rb

中有这些行
config.serve_static_assets = false
config.assets.js_compressor = :uglifier
config.assets.compile = true    
config.assets.precompile += ['active_admin.js', 'active_admin.css', 'active_admin/print.css']

我的 application.rb 文件有这一行

config.assets.precompile = %w(*)

但是当我尝试使用

更新我的资产时
git rm -rf public/assets
rake assets:precompile

我收到这个错误

Sass::SyntaxError: Undefined mixin 'global-reset'

我的 Gemfile 里有这个

gem 'activeadmin', github: 'gregbell/active_admin'

有什么问题我需要做什么才能在 heroku 上更新我的资产。

您可以尝试将其从 application.rb 中删除并根据需要添加到所有环境中吗?