Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
6d86f3b5
Commit
6d86f3b5
authored
Jul 22, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
f4ff1858
5595c9de
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
changelogs/unreleased/64091-fix-sprockets-paths.yml
changelogs/unreleased/64091-fix-sprockets-paths.yml
+5
-0
config/application.rb
config/application.rb
+4
-1
No files found.
changelogs/unreleased/64091-fix-sprockets-paths.yml
0 → 100644
View file @
6d86f3b5
---
title
:
Fix xterm css not loading for environment terminal
merge_request
:
31023
author
:
type
:
fixed
config/application.rb
View file @
6d86f3b5
...
...
@@ -168,7 +168,6 @@ module Gitlab
# Import gitlab-svgs directly from vendored directory
config
.
assets
.
paths
<<
"
#{
config
.
root
}
/node_modules/@gitlab/svgs/dist"
config
.
assets
.
paths
<<
"
#{
config
.
root
}
/node_modules"
config
.
assets
.
precompile
<<
"icons.svg"
config
.
assets
.
precompile
<<
"icons.json"
config
.
assets
.
precompile
<<
"illustrations/*.svg"
...
...
@@ -186,6 +185,10 @@ module Gitlab
config
.
assets
.
paths
<<
"
#{
config
.
root
}
/vendor/assets/javascripts/"
config
.
assets
.
precompile
<<
"snowplow/sp.js"
# This path must come last to avoid confusing sprockets
# See https://gitlab.com/gitlab-org/gitlab-ce/issues/64091#note_194512508
config
.
assets
.
paths
<<
"
#{
config
.
root
}
/node_modules"
# Compile non-JS/CSS assets in the ee/app/assets folder by default
# Mimic sprockets-rails default: https://github.com/rails/sprockets-rails/blob/v3.2.1/lib/sprockets/railtie.rb#L84-L87
LOOSE_EE_APP_ASSETS
=
lambda
do
|
logical_path
,
filename
|
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment