2021-07-16 16:41:58 +02:00
|
|
|
const path = require('path');
|
2023-01-15 18:59:48 +01:00
|
|
|
const { merge } = require('webpack-merge');
|
|
|
|
const common = require('../../webpack.common');
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2023-01-15 18:59:48 +01:00
|
|
|
const prodConfig = {
|
2021-12-02 01:41:56 +01:00
|
|
|
output: {
|
|
|
|
path: path.resolve(__dirname, 'dist'),
|
|
|
|
filename: '[name].js',
|
|
|
|
library: {
|
|
|
|
type: 'umd',
|
2021-07-16 16:41:58 +02:00
|
|
|
},
|
2021-12-02 01:41:56 +01:00
|
|
|
},
|
2021-12-24 01:35:46 +01:00
|
|
|
entry: {
|
2022-01-26 07:33:39 +01:00
|
|
|
mindplot: './src/index.ts',
|
2022-01-09 19:43:04 +01:00
|
|
|
loader: './src/indexLoader.ts',
|
2021-12-24 01:35:46 +01:00
|
|
|
},
|
2021-12-22 05:53:30 +01:00
|
|
|
mode: 'production',
|
2021-07-16 16:41:58 +02:00
|
|
|
};
|
2023-01-15 18:59:48 +01:00
|
|
|
module.exports = merge(common, prodConfig);
|