报错 Invalid options in vue.config.js: "plugins" is not allowed 在Vue项目中添加plugins报错 解决 在vue.config.js中增加configureWebpack module.exports = { /** * proxy 解决跨域 */ devServer: { }, //其他配置.... configureWebpack: { plugins: [ ...... ], } }