18 lines
431 B
JavaScript
18 lines
431 B
JavaScript
/* 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: "development",
|
|
output: {
|
|
filename: 'converse.js',
|
|
},
|
|
optimization: {
|
|
minimize: false,
|
|
},
|
|
plugins: [
|
|
new MiniCssExtractPlugin({filename: '../dist/converse.css'}),
|
|
],
|
|
});
|