13 lines
279 B
JavaScript
13 lines
279 B
JavaScript
|
// vue.config.js
|
||
|
const { codeInspectorPlugin } = require('code-inspector-plugin');
|
||
|
|
||
|
module.exports = {
|
||
|
// ...other code
|
||
|
chainWebpack: (config) => {
|
||
|
config.plugin('code-inspector-plugin').use(
|
||
|
codeInspectorPlugin({
|
||
|
bundler: 'webpack',
|
||
|
})
|
||
|
);
|
||
|
},
|
||
|
};
|