Created
December 31, 2017 14:55
-
-
Save zhulik/1aab68cb0827f1436149b26f3caa5083 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# версия 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