From 9c6353a1b6108e0f8c1bdc6fc8e8ea37e69c3feb Mon Sep 17 00:00:00 2001 From: Dmitry Lyzo Date: Fri, 10 Nov 2023 00:35:50 +0300 Subject: [PATCH] add abortable fetch polyfill AbortController is not enough (e7d00d7e2451ba7c200be2ca50eb238b155c2bae). --- src/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.jsx b/src/index.jsx index 40506c9f84..7cfa13d1c0 100644 --- a/src/index.jsx +++ b/src/index.jsx @@ -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';