From 424f568f392c58c8243ad38caa58d46fba6d84a5 Mon Sep 17 00:00:00 2001 From: Simon Legner Date: Tue, 21 Apr 2020 09:08:15 +0200 Subject: [PATCH] fix(polyfill): IE11 compatibility --- polyfill/polyfill.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polyfill/polyfill.mjs b/polyfill/polyfill.mjs index e705e65..3ed0e73 100644 --- a/polyfill/polyfill.mjs +++ b/polyfill/polyfill.mjs @@ -1,2 +1,2 @@ -import unfetch from '../src/index.mjs'; +import unfetch from '..'; if (!self.fetch) self.fetch = unfetch;