Bläddra i källkod

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

pull/386/head
winkidney 1 månad sedan
förälder
incheckning
5cb77170a2
1 ändrade filer med 3 tillägg och 3 borttagningar
  1. +3
    -3
      pinry-spa/vue.config.js

+ 3
- 3
pinry-spa/vue.config.js Visa fil

@@ -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,
},
},


Laddar…
Avbryt
Spara