This repository has been archived on 2022-09-21. You can view files and clone it, but cannot push or open issues or pull requests.
converse.js/webpack.dev.js

18 lines
433 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, {
output: {
filename: 'converse.js',
},
optimization: {
minimize: false,
},
devtool: 'source-map',
plugins: [
new MiniCssExtractPlugin({filename: '../dist/converse.css'}),
],
});