mirror of
https://github.com/wx-chevalier/screen-sharing-rdp.git
synced 2026-04-23 00:07:07 +08:00
12 lines
311 B
JavaScript
12 lines
311 B
JavaScript
const merge = require('webpack-merge');
|
|
|
|
const themeConfig = require('./webpack.config.theme');
|
|
const umdConfig = require('../../../../scripts/webpack/webpack.config')
|
|
.umdConfig;
|
|
|
|
module.exports = merge(umdConfig, themeConfig, {
|
|
entry: {
|
|
index: path.resolve(__dirname, '../../src/index.umd'),
|
|
},
|
|
});
|