1234567891011121314151617 |
- /* global module */
- const MiniCssExtractPlugin = require('mini-css-extract-plugin');
- const prod = require("./webpack.prod.js");
- const { merge } = require("webpack-merge");
- module.exports = merge(prod, {
- mode: "production",
- output: {
- filename: 'converse.js',
- },
- optimization: {
- minimize: false,
- },
- plugins: [
- new MiniCssExtractPlugin({filename: '../dist/converse.css'}),
- ],
- });
|