mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 05:19:39 +02:00
8 lines
255 B
JavaScript
8 lines
255 B
JavaScript
|
const SpeedMeasurePlugin = require('speed-measure-webpack-plugin');
|
||
|
const smp = new SpeedMeasurePlugin();
|
||
|
|
||
|
const devConfig = require('./webpack.develop.js');
|
||
|
// const prodConfig = require('./webpack.production.js');
|
||
|
|
||
|
module.exports = smp.wrap(devConfig);
|