dogeystamp
09199ebec5
- created a package.json - refactor with eslint - use modules - moved everything to webpack
14 lines
296 B
JavaScript
14 lines
296 B
JavaScript
const { merge } = require("webpack-merge");
|
|
const common = require("./webpack.common.js");
|
|
const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
|
|
|
|
module.exports = merge(common, {
|
|
mode: "production",
|
|
optimization: {
|
|
minimizer: [
|
|
"...",
|
|
new CssMinimizerPlugin(),
|
|
]
|
|
}
|
|
});
|