From cdc9c1878691c5f93152b7f4153ae541a6e0f0a1 Mon Sep 17 00:00:00 2001 From: Filipe Silva Date: Sat, 31 Dec 2016 17:30:05 +0000 Subject: [PATCH] fix(build): disable performance hints See https://github.com/webpack/webpack/issues/3486 --- packages/angular-cli/models/webpack-build-common.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/angular-cli/models/webpack-build-common.ts b/packages/angular-cli/models/webpack-build-common.ts index 97fd59bc689e..cd0465ea2335 100644 --- a/packages/angular-cli/models/webpack-build-common.ts +++ b/packages/angular-cli/models/webpack-build-common.ts @@ -108,6 +108,7 @@ export function getWebpackCommonConfig( return { devtool: sourcemap ? 'source-map' : false, + performance: { hints: false }, resolve: { extensions: ['.ts', '.js'], modules: [nodeModules],