diff options
author | Phil Hughes <me@iamphill.com> | 2017-04-15 16:07:31 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-04-15 16:07:31 +0100 |
commit | 90ba69d224eb7ef3d91332f1b7944c68ad16affd (patch) | |
tree | c18ad022e10ef98743d7e9b48c46131583b0c0e1 /config | |
parent | 302e855f52b5d914e64bf6fbcc7e6544904c4e77 (diff) | |
download | gitlab-ce-90ba69d224eb7ef3d91332f1b7944c68ad16affd.tar.gz |
Started internationalising cycyle analytics
Diffstat (limited to 'config')
-rw-r--r-- | config/webpack.config.js | 5 |
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', + }, ] }, |