2021-07-05 05:19:04 +02:00
|
|
|
import TerserWebpackPlugin from 'terser-webpack-plugin'
|
|
|
|
import terserOptions from '../bin/terserOptions'
|
2018-12-16 02:36:36 +01:00
|
|
|
|
2021-07-05 05:19:04 +02:00
|
|
|
export default () => new TerserWebpackPlugin({
|
2019-10-15 05:00:57 +02:00
|
|
|
exclude: /(tesseract-asset|page-lifecycle)/, // tesseract causes problems, page-lifecycle is pre-minified
|
2018-12-16 02:36:36 +01:00
|
|
|
parallel: true,
|
2019-10-25 04:03:10 +02:00
|
|
|
terserOptions
|
2018-12-16 02:36:36 +01:00
|
|
|
})
|