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