From 697be3c610647d0a96ba7ca2ae30454739ae98f4 Mon Sep 17 00:00:00 2001 From: Art Lowel Date: Wed, 27 May 2020 18:17:37 +0200 Subject: [PATCH] fix issue with polyfill order in safari and firefox --- src/polyfills.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/polyfills.ts b/src/polyfills.ts index ca40a803ba..7f2198117b 100644 --- a/src/polyfills.ts +++ b/src/polyfills.ts @@ -55,7 +55,6 @@ /*************************************************************************************************** * Zone JS is required by default for Angular itself. */ -import 'zone.js/dist/zone'; // Included with Angular CLI. /*************************************************************************************************** * APPLICATION IMPORTS @@ -64,4 +63,6 @@ import 'zone.js/dist/zone'; // Included with Angular CLI. import 'core-js/es'; import 'core-js/features/reflect'; +import 'zone.js/dist/zone'; // Included with Angular CLI. + import 'reflect-metadata';