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.serve.js

22 lines
575 B
JavaScript

/* global module, __dirname */
const HTMLWebpackPlugin = require('html-webpack-plugin');
const common = require("./webpack.common.js");
const { merge } = require("webpack-merge");
const path = require("path");
module.exports = merge(common, {
mode: "development",
devtool: "inline-source-map",
devServer: {
static: [ path.resolve(__dirname, '') ],
port: 3003
},
plugins: [
new HTMLWebpackPlugin({
title: 'Converse.js Dev',
template: 'webpack.html',
filename: 'index.html'
})
],
});