From 742750eb827a0caf8f99826a6a83d16c59e34865 Mon Sep 17 00:00:00 2001 From: Katy DeCorah Date: Wed, 6 Oct 2021 14:03:14 -0400 Subject: [PATCH] Update link to transpiling guide --- rollup/bundle_prelude.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rollup/bundle_prelude.js b/rollup/bundle_prelude.js index fa62061ec4e..215f2a8405c 100644 --- a/rollup/bundle_prelude.js +++ b/rollup/bundle_prelude.js @@ -9,7 +9,7 @@ if (!shared) { } else if (!worker) { worker = chunk; } else { - var workerBundleString = "self.onerror = function() { console.error('An error occurred while parsing the WebWorker bundle. This is most likely due to improper transpilation by Babel; please see https://docs.mapbox.com/mapbox-gl-js/api/#transpiling-v2'); }; var sharedChunk = {}; (" + shared + ")(sharedChunk); (" + worker + ")(sharedChunk); self.onerror = null;" + var workerBundleString = "self.onerror = function() { console.error('An error occurred while parsing the WebWorker bundle. This is most likely due to improper transpilation by Babel; please see https://docs.mapbox.com/mapbox-gl-js/guides/install/#transpiling'); }; var sharedChunk = {}; (" + shared + ")(sharedChunk); (" + worker + ")(sharedChunk); self.onerror = null;" var sharedChunk = {}; shared(sharedChunk);