mirror of
https://github.com/simon987/sist2.git
synced 2025-04-04 07:52:59 +00:00
26 lines
685 B
JavaScript
26 lines
685 B
JavaScript
const TerserPlugin = require("terser-webpack-plugin");
|
|
|
|
module.exports = {
|
|
filenameHashing: false,
|
|
productionSourceMap: false,
|
|
publicPath: "./",
|
|
pages: {
|
|
index: {
|
|
entry: "src/main.js"
|
|
}
|
|
},
|
|
configureWebpack: config => {
|
|
config.optimization.minimizer = [new TerserPlugin({
|
|
terserOptions: {
|
|
compress: {
|
|
passes: 2,
|
|
module: true,
|
|
hoist_funs: true,
|
|
// https://github.com/microsoft/onnxruntime/issues/16984
|
|
unused: false,
|
|
},
|
|
mangle: true,
|
|
}
|
|
})]
|
|
}
|
|
} |