1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

add abortable fetch polyfill

AbortController is not enough (e7d00d7e24).
This commit is contained in:
Dmitry Lyzo 2023-11-10 00:35:50 +03:00
parent c7a2bd3daa
commit 9c6353a1b6

View file

@ -1,11 +1,11 @@
import 'core-js/stable';
import 'regenerator-runtime/runtime';
import 'jquery';
import 'abortcontroller-polyfill/dist/abortcontroller-polyfill-only';
import 'fast-text-encoding';
import 'intersection-observer';
import 'classlist.js';
import 'whatwg-fetch';
import 'abortcontroller-polyfill'; // requires fetch
import 'resize-observer-polyfill';
import './styles/site.scss';
import React, { StrictMode } from 'react';