From 357cca4d4b46f2bacf9c16c55cf7cf7840764821 Mon Sep 17 00:00:00 2001 From: Justin Poehnelt Date: Mon, 28 Mar 2022 09:11:32 -0600 Subject: [PATCH] fix: disable sourcemap temporarily (#386) cc #340 --- rollup.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rollup.config.js b/rollup.config.js index 1da15c62..51eabd05 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -62,7 +62,7 @@ const config = OUTPUT_DATA.map(({file, format}) => ({ format, name: OUTPUT_NAME, globals: GLOBALS, - sourcemap: true, + sourcemap: false, // https://github.com/googlemaps/react-wrapper/issues/340 }, external: EXTERNAL, plugins: PLUGINS,