mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 09:53:24 +01:00
8ccc4e798e
Add inline images to editor footer Move playground to editor
17 lines
320 B
JavaScript
17 lines
320 B
JavaScript
const { merge } = require('webpack-merge');
|
|
const common = require('./webpack.common');
|
|
|
|
const prodConfig = {
|
|
optimization: {
|
|
usedExports: true,
|
|
minimize: true,
|
|
},
|
|
externals: {
|
|
react: 'react',
|
|
reactDOM: 'react-dom',
|
|
reactIntl: 'react-intl',
|
|
},
|
|
};
|
|
|
|
module.exports = merge(common, prodConfig);
|