mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
20 lines
425 B
JavaScript
20 lines
425 B
JavaScript
const path = require('path');
|
|
const { merge } = require('webpack-merge');
|
|
const common = require('../../webpack.common');
|
|
|
|
const prodConfig = {
|
|
output: {
|
|
path: path.resolve(__dirname, 'dist'),
|
|
filename: '[name].js',
|
|
library: {
|
|
type: 'umd',
|
|
},
|
|
},
|
|
entry: {
|
|
mindplot: './src/index.ts',
|
|
loader: './src/indexLoader.ts',
|
|
},
|
|
mode: 'production',
|
|
};
|
|
module.exports = merge(common, prodConfig);
|