module.exports = { chainWebpack: config => { config .pugin('插件名字') .use(引入的插件的變量, 必定不要使用new 關鍵字) .tag: c => { // c 是一個數組 c[0] = {插件的配置項} return c; } } }
// 引入 vconsole-webpack-plugin const VconsoleWebpackPlugin = require('vconsole-webpack-plugin') module.exports = { chainWebpack: config => { config .pugin('Vconsole') .use(VconsoleWebpackPlugin) // 不要 new .tag: c => { // c 是一個數組 c[0] = {enable: true} return c; } } }