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:
Diffstat (limited to 'config/webpack.config.js')
-rw-r--r--config/webpack.config.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/webpack.config.js b/config/webpack.config.js
index 1ee681857a6..8b45b25a328 100644
--- a/config/webpack.config.js
+++ b/config/webpack.config.js
@@ -359,7 +359,7 @@ module.exports = {
use: [],
},
{
- test: /(@cubejs-client\/vue).*\.(js)?$/,
+ test: /(@cubejs-client\/(vue|core)).*\.(js)?$/,
include: /node_modules/,
loader: 'babel-loader',
},
@@ -429,7 +429,7 @@ module.exports = {
loader: 'graphql-tag/loader',
},
{
- test: /icons\.svg$/,
+ test: /@gitlab\/svgs\/.+\.svg$/,
loader: 'file-loader',
options: {
name: '[name].[contenthash:8].[ext]',
@@ -437,7 +437,7 @@ module.exports = {
},
{
test: /\.svg$/,
- exclude: /icons\.svg$/,
+ exclude: /@gitlab\/svgs\/.+\.svg$/,
resourceQuery: /url/,
loader: 'file-loader',
options: {