10 lines
343 B
JavaScript
10 lines
343 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 'dom4';
|
|
import 'intersection-observer';
|
|
import 'whatwg-fetch';
|
|
|
|
import './polyfills/insertAdjacentElement';
|
|
import './polyfills/dataset';
|