From 8493439c8d6d036f408f80bdac96f6ea668dca2d Mon Sep 17 00:00:00 2001 From: Seth Silesky <5115498+silesky@users.noreply.github.com> Date: Thu, 20 Apr 2023 22:34:21 -0500 Subject: [PATCH] Update standalone.ts --- packages/browser/src/browser/standalone.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/browser/src/browser/standalone.ts b/packages/browser/src/browser/standalone.ts index 519d3b61b..e5fc90d4d 100644 --- a/packages/browser/src/browser/standalone.ts +++ b/packages/browser/src/browser/standalone.ts @@ -76,7 +76,7 @@ if (shouldPolyfill()) { const script = document.createElement('script') script.setAttribute( 'src', // this should map to tsconfig lib. gated means "only load polyfill if feature does not exist" - 'https://polyfill.io/v3/polyfill.min.js?features=es5,es2015,es2016,es2017,es2018,es2019,es2020&flags=always,gated' + 'https://polyfill.io/v3/polyfill.min.js?features=es5,es2015,es2016,es2017,es2018,es2019,es2020&flags=gated' ) if (document.readyState === 'loading') {