mancha
Version:
Javscript HTML rendering engine
19 lines (17 loc) • 369 B
JavaScript
import TerserPlugin from "terser-webpack-plugin";
export default {
target: "web",
mode: "production",
entry: {
mancha: "./dist/mancha.js",
},
output: {
filename: "[name].js",
},
optimization: {
minimize: true,
minimizer: [
new TerserPlugin({ extractComments: false, terserOptions: { output: { comments: false } } }),
],
},
};