瀏覽代碼

fix: bug fix for proxy error caused by localhost name error

pull/386/head
winkidney 1 月之前
父節點
當前提交
5cb77170a2
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. +3
    -3
      pinry-spa/vue.config.js

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

@@ -2,16 +2,16 @@ module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://localhost:8000/',
target: 'http://127.0.0.1:8000/',
changeOrigin: true,
ws: true,
},
'/media': {
target: 'http://localhost:8000/',
target: 'http://127.0.0.1:8000/',
changeOrigin: true,
},
'/static/js/': {
target: 'http://localhost:8000/',
target: 'http://127.0.0.1:8000/',
changeOrigin: true,
},
},


Loading…
取消
儲存