wisemapping-frontend/packages/mindplot/webpack.common.js

20 lines
425 B
JavaScript
Raw Normal View History

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