mirror of
https://github.com/maputnik/editor.git
synced 2026-02-06 20:50:12 +00:00
19 lines
465 B
JavaScript
19 lines
465 B
JavaScript
const webpackProdConfig = require('./webpack.production.config');
|
|
var path = require('path');
|
|
|
|
module.exports = {
|
|
...webpackProdConfig,
|
|
output: {
|
|
...webpackProdConfig.output,
|
|
path: path.join(__dirname, '..', 'build' , 'profiling'),
|
|
},
|
|
resolve: {
|
|
...webpackProdConfig.resolve,
|
|
alias: {
|
|
...webpackProdConfig.resolve.alias,
|
|
'react-dom$': 'react-dom/profiling',
|
|
'scheduler/tracing': 'scheduler/tracing-profiling',
|
|
}
|
|
}
|
|
};
|