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

12 lines
224 B
JavaScript
Raw Normal View History

2023-12-27 17:25:49 +00:00
module.exports = {
entry: './lib.js',
output: {
library: {
type: "umd",
name: "matrix"
},
filename: "matrix-crdt.js",
path: require('path').resolve(__dirname, '../../../../../../dist')
}
};