diff options
author | Kamil TrzciĆski <ayufan@ayufan.eu> | 2018-10-19 16:46:58 +0000 |
---|---|---|
committer | Clement Ho <clemmakesapps@gmail.com> | 2018-10-19 16:46:58 +0000 |
commit | 129abb2964c671007a91e0cf586e0407900e1e8b (patch) | |
tree | 60973af0ff66da1c411adfd5578642d36f9bd896 /config | |
parent | 3e1e9dc6e655bf7cc20467341cb7d2f732dd2106 (diff) | |
download | gitlab-ce-129abb2964c671007a91e0cf586e0407900e1e8b.tar.gz |
Allow to configure cache path for webpack
Diffstat (limited to 'config')
-rw-r--r-- | config/webpack.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/webpack.config.js b/config/webpack.config.js index 583f05f2fb7..9ecae9790fd 100644 --- a/config/webpack.config.js +++ b/config/webpack.config.js @@ -8,7 +8,7 @@ const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin'); const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin; const ROOT_PATH = path.resolve(__dirname, '..'); -const CACHE_PATH = path.join(ROOT_PATH, 'tmp/cache'); +const CACHE_PATH = process.env.WEBPACK_CACHE_PATH || path.join(ROOT_PATH, 'tmp/cache'); const IS_PRODUCTION = process.env.NODE_ENV === 'production'; const IS_DEV_SERVER = process.argv.join(' ').indexOf('webpack-dev-server') !== -1; const DEV_SERVER_HOST = process.env.DEV_SERVER_HOST || 'localhost'; |