export default {
plugins: [new InspectorWebpackPlugin({
// Custom the port of devtool page, which is 3333 by default.
port: 3456,
// Config the module that need to be ignored, ignore will not work by default.
ignorePattern: /node_modules/
})]
}
Credits
The UI interface implementation of inspector is modified from existing project vite-plugin-inspect.At the same time, webpack loader in the inspect got inspired by speed-measure-webpack-plugin.Thanks for them.
Webpack Inspector
Introduction
Webpack dev tools to make performance analysis, error investigation and loader development more convenient. Provide the following functions:
Usage
1. Install
2. Use in webpack
3. Custom Options
Credits
The UI interface implementation of inspector is modified from existing project
vite-plugin-inspect.At the same time, webpack loader in the inspect got inspired byspeed-measure-webpack-plugin.Thanks for them.