fix terserplugin options

This commit is contained in:
Norbert de Langen 2020-12-03 19:56:00 +01:00
parent 1ed50bcae4
commit 429cd06ab5
No known key found for this signature in database
GPG Key ID: 976651DA156C2825
2 changed files with 4 additions and 8 deletions

View File

@ -161,15 +161,13 @@ export default async ({
minimizer: isProd
? [
new TerserWebpackPlugin({
cache: true,
parallel: true,
sourceMap: true,
terserOptions: {
mangle: false,
sourceMap: true,
keep_fnames: true,
},
// FIXME: `cache` isn't a known attribute
} as any),
}),
]
: [],
},

View File

@ -196,15 +196,13 @@ export default async ({
minimizer: isProd
? [
new TerserWebpackPlugin({
cache: true,
parallel: true,
sourceMap: true,
terserOptions: {
sourceMap: true,
mangle: false,
keep_fnames: true,
},
// FIXME: `cache` isn't a known attribute
} as any),
}),
]
: [],
},