@kaliber/build 0.0.128 → 0.0.129
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/polyfill.js +1 -1
- package/package.json +1 -1
package/lib/polyfill.js
CHANGED
@@ -4,5 +4,5 @@ export default function polyfill(features = []) {
|
|
4
4
|
const src = isProduction
|
5
5
|
? `https://cdn.polyfill.io/v3/polyfill.min.js?rum=0&unknown=polyfill&flags=gated&features=${features.join(',')}`
|
6
6
|
: `https://cdn.polyfill.io/v3/polyfill.js?rum=0&unknown=polyfill&flags=gated&features=${features.join(',')}`
|
7
|
-
return <script
|
7
|
+
return <script src={src} crossOrigin="anonymous" />
|
8
8
|
}
|
package/package.json
CHANGED