From c6afc4af5ffb40476c11eaedf00c40010eb63966 Mon Sep 17 00:00:00 2001 From: Andrew Koroluk Date: Mon, 22 Oct 2018 14:31:07 -0700 Subject: [PATCH] fix(client): remove polyfills from Webpack entry Since the file is also imported, this caused Zone.js to be loaded twice, which was breaking the front end fixes #2764 --- templates/app/webpack.make.js | 1 - 1 file changed, 1 deletion(-) diff --git a/templates/app/webpack.make.js b/templates/app/webpack.make.js index fbf0829e6..0faa75001 100644 --- a/templates/app/webpack.make.js +++ b/templates/app/webpack.make.js @@ -39,7 +39,6 @@ module.exports = function makeWebpackConfig(options) { if(!TEST) { config.entry = { app: './client/app/app.<%= scriptExt %>', - polyfills: './client/app/polyfills.<%= scriptExt %>', vendor: [ 'lodash' ]