Skip to content

Commit 87ec491

Browse files
committed
Fix build
1 parent 6a4fc51 commit 87ec491

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

scripts/build.mjs

+1-5
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,7 @@ async function build(format = 'esm') {
2323
target: 'es2019',
2424
outExtension: { '.js': format === 'cjs' ? '.cjs' : '.js' },
2525
sourcemap: true,
26-
plugins: [
27-
vue({
28-
sourceMap: true,
29-
}),
30-
],
26+
plugins: [vue({ sourceMap: false })],
3127
external: ['@mapbox/mapbox-gl-geocoder', 'mapbox-gl', 'vue'],
3228
});
3329
writeFileSync(path.resolve(outdir, `meta.${format}.json`), JSON.stringify(result.metafile));

0 commit comments

Comments
 (0)