问题描述
通过安装vuepress,初始化之后启动项目启动成功,但浏览器无法浏览,报一下错误:
UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 5): TypeError: res.getHeader is not a function
1、vuepress 官网有两种使用方式,一种是在全局安装、另一种是安装到项目中作为项目依赖,尝试了都是同样的错误
相关代码
package.json:
{
"name": "vuepressNote",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"keywords": [],
"author": "",
"license": "ISC"
}
目录结构
希望新建的vuepress项目可以正常启动并可以在浏览器访问
这里你可以尝试一下建立一个package.json
再添加指令
然后用
yarn docs:dev
来启动我直接用vuepress dev 启动也是会出和你一样的错误
你好像也有package.json 哦。。。 你是直接vuepress dev启动的还是用的npm/yarn 去启动的啊