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