ソースを参照

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

読み込み中…
キャンセル
保存