From 56b14667ed502cf62dee984c5754a8ef833ba103 Mon Sep 17 00:00:00 2001 From: Simon Knox Date: Thu, 15 Jun 2017 17:46:15 +1000 Subject: hot reloading for .vue files --- config/webpack.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/webpack.config.js b/config/webpack.config.js index 3c2455ebf35..8f2c2f332c5 100644 --- a/config/webpack.config.js +++ b/config/webpack.config.js @@ -249,6 +249,7 @@ if (IS_DEV_SERVER) { port: DEV_SERVER_PORT, headers: { 'Access-Control-Allow-Origin': '*' }, stats: 'errors-only', + hot: DEV_SERVER_LIVERELOAD, inline: DEV_SERVER_LIVERELOAD }; config.output.publicPath = '//' + DEV_SERVER_HOST + ':' + DEV_SERVER_PORT + config.output.publicPath; @@ -256,6 +257,9 @@ if (IS_DEV_SERVER) { // watch node_modules for changes if we encounter a missing module compile error new WatchMissingNodeModulesPlugin(path.join(ROOT_PATH, 'node_modules')) ); + if (DEV_SERVER_LIVERELOAD) { + config.plugins.push(new webpack.HotModuleReplacementPlugin()); + } } if (WEBPACK_REPORT) { -- cgit v1.2.1