20 lines
425 B
JavaScript
Raw Normal View History

2021-07-16 11:41:58 -03:00
const path = require('path');
const { merge } = require('webpack-merge');
const common = require('../../webpack.common');
2021-07-16 11:41:58 -03:00
const prodConfig = {
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].js',
library: {
type: 'umd',
2021-07-16 11:41:58 -03:00
},
},
2021-12-23 16:35:46 -08:00
entry: {
2022-01-25 22:33:39 -08:00
mindplot: './src/index.ts',
loader: './src/indexLoader.ts',
2021-12-23 16:35:46 -08:00
},
mode: 'production',
2021-07-16 11:41:58 -03:00
};
module.exports = merge(common, prodConfig);