代码拉取完成,页面将自动刷新
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"));
}
}
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。