You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/webpack/webpack.optimize.js

8 lines
255 B

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);