Builtin ConverseJS:

* Building with webpack. TODO: include assets.
* Page template
This commit is contained in:
John Livingston
2021-02-20 20:42:41 +01:00
parent fbfb38392d
commit d9e461f984
7 changed files with 129 additions and 8 deletions

View File

@ -18,4 +18,12 @@ let config = clientFiles.map(f => ({
plugins: [ new EsmWebpackPlugin() ]
}))
config.push({
entry: "./conversejs/conversejs.js",
output: {
path: path.resolve(__dirname, "./dist/conversejs"),
filename: "./conversejs.js"
}
})
module.exports = config