Ver código fonte

Feature: Add api proxy for vue-js

pull/169/head
winkidney 5 anos atrás
committed by Isaac Bythewood
pai
commit
cf7914e593
1 arquivos alterados com 14 adições e 0 exclusões
  1. +14
    -0
      pinry-spa/vue.config.js

+ 14
- 0
pinry-spa/vue.config.js Ver arquivo

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

Carregando…
Cancelar
Salvar