vue.config.js添加webpack插件的寫法

寫法:

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;
	}
  }
}
相關文章
相關標籤/搜索