TypeError: compilation.templatesPlugin is not a function

vue 02-14 16:18

最近在重新安装vue项目时,出现 TypeError: compilation.templatesPlugin is not a function 错误。相同的代码之前没有问题,重新git后就出现这个问题,莫名其妙,经过搜索验证发现有可能是以下问题

原因一、webpack不是最新版

执行 npm add webpack@latest  解决。

原因二、版本不兼容

1、删除 node_modules
2、重新安装

npm install --registry=https://registry.npm.taobao.org

相关推荐