瀏覽代碼

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': '',
},
},
},
},
};

Loading…
取消
儲存