From b3da3cdae96f9f13bc44074e9cfbcabb16edeff6 Mon Sep 17 00:00:00 2001 From: Guillaume Beraudo Date: Fri, 18 Dec 2020 15:44:52 +0100 Subject: [PATCH] Fix bundling issue See https://github.com/Stuk/jszip/issues/673. --- src/download.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/download.js b/src/download.js index 08a2df04b..a77fc19f8 100644 --- a/src/download.js +++ b/src/download.js @@ -1,4 +1,4 @@ -import JSZip from 'jszip'; +import JSZip from 'jszip/dist/jszip.js'; import {coordinatesToBbox, areBboxIntersectings, filterCsvString} from './utils.js';