Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2019-07-29 23:25:59 +0300
committerMike Greiling <mike@pixelcog.com>2019-07-30 00:44:45 +0300
commitb0ba7c72de0a864b01ec1c4be626a8a233a9009f (patch)
treed1e69300285401dead74dca35920363592760b15 /config/webpack.config.js
parent7d68ac70aa111ab17cfb01e12ace7fa09fedb90b (diff)
Override icons.svg asset path with sprockets asset
Diffstat (limited to 'config/webpack.config.js')
-rw-r--r--config/webpack.config.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/config/webpack.config.js b/config/webpack.config.js
index f00a9ac0df9..c497a6e88f8 100644
--- a/config/webpack.config.js
+++ b/config/webpack.config.js
@@ -89,6 +89,12 @@ const alias = {
// the following resolves files which are different between CE and EE
ee_else_ce: path.join(ROOT_PATH, 'app/assets/javascripts'),
+
+ // override loader path for icons.svg so we do not duplicate this asset
+ '@gitlab/svgs/dist/icons.svg': path.join(
+ ROOT_PATH,
+ 'app/assets/javascripts/lib/utils/icons_path.js',
+ ),
};
if (IS_EE) {