Fix node-fetch require for webpack

This commit is contained in:
Anthony MacKinnon 2019-10-14 04:29:53 -04:00
Родитель dc895dcae4
Коммит c7aca1feb4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -17,7 +17,7 @@ interface GlobalWithFetch extends NodeJS.Global {
const globalWithFetch = global as GlobalWithFetch;
if (typeof globalWithFetch.fetch !== "function") {
const fetch = require("node-fetch");
const fetch = require("node-fetch").default;
globalWithFetch.fetch = fetch;
}