Pick up option from gdk to disable webpack dev server livereload

Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/28204
This commit is contained in:
Eric Eastwood 2017-02-15 17:57:51 -06:00
parent 1452729304
commit 21dd33be46
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,4 @@
---
title: Pick up option from GDK to disable webpack dev server livereload
merge_request:
author:

View File

@ -10,6 +10,7 @@ var ROOT_PATH = path.resolve(__dirname, '..');
var IS_PRODUCTION = process.env.NODE_ENV === 'production';
var IS_DEV_SERVER = process.argv[1].indexOf('webpack-dev-server') !== -1;
var DEV_SERVER_PORT = parseInt(process.env.DEV_SERVER_PORT, 10) || 3808;
var DEV_SERVER_LIVERELOAD = process.env.DEV_SERVER_LIVERELOAD !== 'false';
var config = {
context: path.join(ROOT_PATH, 'app/assets/javascripts'),
@ -120,6 +121,7 @@ if (IS_DEV_SERVER) {
port: DEV_SERVER_PORT,
headers: { 'Access-Control-Allow-Origin': '*' },
stats: 'errors-only',
inline: DEV_SERVER_LIVERELOAD
};
config.output.publicPath = '//localhost:' + DEV_SERVER_PORT + config.output.publicPath;
}