浏览代码

Feature: Add api proxy for vue-js

pull/169/head
winkidney 5 年前
committed by Isaac Bythewood
父节点
当前提交
cf7914e593
共有 1 个文件被更改,包括 14 次插入0 次删除
  1. +14
    -0
      pinry-spa/vue.config.js

+ 14
- 0
pinry-spa/vue.config.js 查看文件

@@ -0,0 +1,14 @@
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://localhost:8000/',
changeOrigin: true,
ws: true,
pathRewrite: {
'^/api': '',
},
},
},
},
};

正在加载...
取消
保存