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
path: root/config
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-04-15 18:07:31 +0300
committerPhil Hughes <me@iamphill.com>2017-04-15 18:07:31 +0300
commit90ba69d224eb7ef3d91332f1b7944c68ad16affd (patch)
treec18ad022e10ef98743d7e9b48c46131583b0c0e1 /config
parent302e855f52b5d914e64bf6fbcc7e6544904c4e77 (diff)
Started internationalising cycyle analytics
Diffstat (limited to 'config')
-rw-r--r--config/webpack.config.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/config/webpack.config.js b/config/webpack.config.js
index ffb16190093..df7b43cf053 100644
--- a/config/webpack.config.js
+++ b/config/webpack.config.js
@@ -52,6 +52,7 @@ var config = {
vue_pipelines: './vue_pipelines_index/index.js',
issue_show: './issue_show/index.js',
group: './group.js',
+ locale: './locale/index.js',
},
output: {
@@ -82,6 +83,10 @@ var config = {
exclude: /node_modules/,
loader: 'file-loader',
},
+ {
+ test: /locale\/[a-z]+\/(.*)\.js$/,
+ loader: 'exports-loader?locales',
+ },
]
},