debian-mirror-gitlab/debian/patches/0500-set-webpack-root.patch

12 lines
562 B
Diff
Raw Normal View History

2017-08-23 09:38:10 +05:30
--- a/config/webpack.config.js
+++ b/config/webpack.config.js
2018-10-15 15:54:03 +05:30
@@ -7,7 +7,7 @@
2018-11-08 20:39:57 +05:30
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
2018-03-27 20:24:05 +05:30
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
2017-08-23 09:38:10 +05:30
2018-03-27 20:24:05 +05:30
-const ROOT_PATH = path.resolve(__dirname, '..');
+const ROOT_PATH = '/usr/share/gitlab';
2018-12-13 14:23:24 +05:30
const CACHE_PATH = process.env.WEBPACK_CACHE_PATH || path.join(ROOT_PATH, 'tmp/cache');
2018-03-27 20:24:05 +05:30
const IS_PRODUCTION = process.env.NODE_ENV === 'production';
const IS_DEV_SERVER = process.argv.join(' ').indexOf('webpack-dev-server') !== -1;