mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-10 17:33:24 +01:00
11 lines
252 B
JavaScript
11 lines
252 B
JavaScript
const { merge } = require('webpack-merge');
|
|
const common = require('./webpack.common');
|
|
|
|
/** @type {import('webpack').Configuration} */
|
|
const prodConfig = {
|
|
mode: 'production',
|
|
devtool: 'source-map',
|
|
};
|
|
|
|
module.exports = merge(common, prodConfig);
|