xrfragment/src/3rd/js/plugin/matrix/webpack.config.js

12 lines
203 B
JavaScript
Raw Normal View History

2023-12-27 17:25:49 +00:00
module.exports = {
entry: './lib.js',
output: {
library: {
type: "umd",
2024-01-09 11:05:13 +00:00
name: "Matrix"
2023-12-27 17:25:49 +00:00
},
filename: "matrix-crdt.js",
2023-12-28 09:46:48 +00:00
path: require('path').resolve(__dirname, '.')
2023-12-27 17:25:49 +00:00
}
};