speed-measure-webpack-plugin
speed-measure-webpack-plugin copied to clipboard
Laravel mix compatible
How to install this plugin in laravel mix?
I got it to work (in laravel-mix@6) with the mix.webpackConfig
, if you're using it.
Changed this :
mix.webpackConfig({
...
});
to this :
const SpeedMeasurePlugin = require("speed-measure-webpack-plugin");
const smp = new SpeedMeasurePlugin();
mix.webpackConfig(smp.wrap({
...
}));