Commit 744c9b1b authored by Mark Chao's avatar Mark Chao

Merge branch 'fix_ee_asset_pipeline' into 'master'

Fix regression for EE asset paths

See merge request gitlab-org/gitlab!41761
parents 005b5b1c a39de17e
......@@ -209,6 +209,13 @@ module Gitlab
config.assets.paths << "#{config.root}/node_modules/xterm/src/"
config.assets.precompile << "xterm.css"
# Add EE assets
if Gitlab.ee?
%w[images javascripts stylesheets].each do |path|
config.assets.paths << "#{config.root}/ee/app/assets/#{path}"
end
end
# Import path for EE specific SCSS entry point
# In CE it will import a noop file, in EE a functioning file
# Order is important, so that the ee file takes precedence:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment