Skip to content

Instantly share code, notes, and snippets.

@zhulik
Created December 31, 2017 14:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhulik/1aab68cb0827f1436149b26f3caa5083 to your computer and use it in GitHub Desktop.
Save zhulik/1aab68cb0827f1436149b26f3caa5083 to your computer and use it in GitHub Desktop.
# версия uglifier у меня 4.0.1
# Кастомный трасформер, положи куда-нибудь, чтобы из production.rb можно было дёрнуть
class Transformer
def compress(string)
Uglifier.compile(string, harmony: true)
end
end
# Это в production.rb
config.assets.js_compressor = Transformer.new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment