demarches-normaliennes/app/javascript/shared/polyfills.js
2022-04-28 11:14:26 +02:00

13 lines
452 B
JavaScript

// Include runtime-polyfills for older browsers.
// Due to babel.config.js's 'useBuiltIns', only polyfills actually
// required by the browsers we support will be included.
import 'core-js/stable';
import 'regenerator-runtime/runtime';
import 'dom4';
import 'intersection-observer';
import 'whatwg-fetch';
import '@webcomponents/webcomponentsjs';
import '@stimulus/polyfills';
import './polyfills/insertAdjacentElement';
import './polyfills/dataset';