mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
19 lines
429 B
JavaScript
19 lines
429 B
JavaScript
const { merge } = require('webpack-merge');
|
|
const common = require('./webpack.common');
|
|
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
|
|
|
|
const prodConfig = {
|
|
optimization: {
|
|
usedExports: true,
|
|
minimize: true,
|
|
},
|
|
externals: {
|
|
react: 'react',
|
|
'react-dom': 'react-dom',
|
|
'react-intl': 'react-intl',
|
|
},
|
|
plugins: [new CleanWebpackPlugin()],
|
|
};
|
|
|
|
module.exports = merge(common, prodConfig);
|