Skip to content
Snippets Groups Projects
Commit 90fc4d10 authored by Alfredo Sumaran's avatar Alfredo Sumaran
Browse files

Merge branch '28204-option-to-disable-webpack-dev-server-livereload' into 'master'

Pick up option from GDK to disable webpack dev server livereload

Closes #28204

See merge request !9287
parents 3e6a5cf0 21dd33be
No related branches found
No related tags found
No related merge requests found
---
title: Pick up option from GDK to disable webpack dev server livereload
merge_request:
author:
Loading
Loading
@@ -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'),
Loading
Loading
@@ -114,6 +115,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;
}
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment