From 80b2e82bf6016749d40f71aa7cf39c31c6aaa018 Mon Sep 17 00:00:00 2001 From: Filipe Silva Date: Thu, 21 Jul 2016 03:26:07 +0100 Subject: [PATCH] fix(serve): disable HMR --- addon/ng2/tasks/serve-webpack.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/addon/ng2/tasks/serve-webpack.ts b/addon/ng2/tasks/serve-webpack.ts index 277047af405a..f76e8acda18f 100644 --- a/addon/ng2/tasks/serve-webpack.ts +++ b/addon/ng2/tasks/serve-webpack.ts @@ -30,8 +30,7 @@ module.exports = Task.extend({ contentBase: path.resolve(this.project.root, `./${CliConfig.fromProject().defaults.sourceDir}`), historyApiFallback: true, stats: webpackDevServerOutputOptions, - inline: true, - hot: true + inline: true }; const serveMessage:string = chalk.green(`\n*\n*\n NG Live Development Server is running on http://localhost:${commandOptions.port}.\n*\n*`);