1 Star 1 Fork 1

weimingtom2000/fakezhihu2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
cwy007 提交于 2020-12-03 05:40 . update devServer proxy
const openInEditor = require("launch-editor-middleware");
module.exports = {
devServer: {
// 跨域处理
proxy: {
"/users": {
// 对 /users/create 的请求也会代理到 3000 端口
target: "http://127.0.0.1:3000"
},
// 这个代理导致 http://localhost:8080/people/4/articles 页面刷新时报错 404
"^/articles": {
// ^ 在这里表示以什么开头
target: "http://127.0.0.1:3000"
},
"/imgs": {
target: "http://127.0.0.1:3000"
},
"/questions": {
target: "http://127.0.0.1:3000"
},
"/answers": {
target: "http://127.0.0.1:3000"
},
"/comments": {
target: "http://127.0.0.1:3000"
},
"/status": {
target: "http://127.0.0.1:3000"
},
"/hot-list-web": {
target: "https://www.zhihu.com/api/v3/feed/topstory/"
}
},
before(app) {
/* 编辑器类型 webstorm code */
app.use("/__open-in-editor", openInEditor("code"));
}
}
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/weimingtom2000/fakezhihu2.git
[email protected]:weimingtom2000/fakezhihu2.git
weimingtom2000
fakezhihu2
fakezhihu2
main

搜索帮助