在Visual Studio Code的后端运行'yarn serve' 报错:' Error: Watching remote files is not supported '

在Visual Studio Code的后端运行yarn serve报错: Error: Watching remote files is not supported

  1. 问题:具体报错代码如下图
    在Visual Studio Code的后端运行'yarn serve' 报错:' Error: Watching remote files is not supported '_第1张图片
  2. 分析问题
    通过报错的代码,我们可以看出是webpack-dev-server出了问题,这是setupWatchStaticFeature函数在3.7.2和3.8.0之间发生了变化引起的问题
  3. 解决方案
    npm install [email protected] --save-dev

你可能感兴趣的:(Vue.js,webpack)