vuepress 报错Error: Cannot find module ‘vue-template-compiler‘

191 阅读1分钟

vuepress dev命令报错

在非已有项目中输入vuepress dev命令报错Error: Cannot find module 'vue-template-compiler'

image.png

image.png

解决方法

在目录中安装一下报错中缺失的包, 再重新启动没问题了

  1. npm install vue-template-compiler
  2. vuepress dev

image.png

image.png