当前位置: 首页 > 知识库问答 >
问题:

vue.js - npm run serve报错ERROR ValidationError: Invalid options object. Dev Server has been initialized?

潘涵煦
2024-07-03

我是个新手,
我在尝试运行一个练习项目,但是npm run serve 弹不出窗口

我使用的版本是Vue2,项目version:0.1.0

脚手架版本5.0.8

我尝试了在vue.config.js的devServe添加了autoOpenBrowser:true但是爆出了

ERROR ValidationError: Invalid options object. Dev Server has been initialized using an options object that does not match   the API schema.

共有1个答案

丁光华
2024-07-03

想要启动项目后自动打开浏览器可以按照下面这种配置方式��

module.exports = {
  devServer: {
    open: true
  }
}

具体请看��https://webpack.docschina.org/configuration/dev-server/#devserveropen

 类似资料: