remove sourcemaps from build

This commit is contained in:
Jan Prochazka
2025-09-12 11:41:59 +02:00
parent 1c049fe1fb
commit bd0b6dd4d2

View File

@@ -37,7 +37,7 @@ export default [
{
input: 'src/query/QueryParserWorker.js',
output: {
sourcemap: true,
sourcemap: !production,
format: 'iife',
file: 'public/build/query-parser-worker.js',
},
@@ -56,7 +56,7 @@ export default [
{
input: 'src/main.ts',
output: {
sourcemap: true,
sourcemap: !production,
format: 'iife',
name: 'app',
file: 'public/build/bundle.js',