Skip to content
Snippets Groups Projects
Commit d0f6654e authored by Alexander Balashov's avatar Alexander Balashov
Browse files

Remove useless `assets.compress` option, Rails 4 uses only `assets.js_compressor`

> The config.assets.compress option should be changed to config.assets.js_compressor like so for instance
parent e3746197
Branches
Tags
No related merge requests found
Loading
@@ -11,8 +11,9 @@ Gitlab::Application.configure do
Loading
@@ -11,8 +11,9 @@ Gitlab::Application.configure do
# Disable Rails's static asset server (Apache or nginx will already do this) # Disable Rails's static asset server (Apache or nginx will already do this)
config.serve_static_assets = false config.serve_static_assets = false
   
# Compress JavaScripts and CSS # Compress JavaScripts and CSS.
config.assets.compress = true config.assets.js_compressor = :uglifier
# config.assets.css_compressor = :sass
   
# Don't fallback to assets pipeline if a precompiled asset is missed # Don't fallback to assets pipeline if a precompiled asset is missed
config.assets.compile = true config.assets.compile = true
Loading
@@ -74,7 +75,6 @@ Gitlab::Application.configure do
Loading
@@ -74,7 +75,6 @@ Gitlab::Application.configure do
config.action_mailer.raise_delivery_errors = true config.action_mailer.raise_delivery_errors = true
   
config.eager_load = true config.eager_load = true
config.assets.js_compressor = :uglifier
   
config.allow_concurrency = false config.allow_concurrency = false
end end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment