Files
kubevela/dashboard/config/proxy.ts
2020-12-17 20:39:27 -08:00

21 lines
329 B
TypeScript

export default {
dev: {
'/api/': {
target: 'http://localhost:8081/',
changeOrigin: true,
},
},
test: {
'/api/': {
target: 'http://localhost:38081/',
changeOrigin: true,
},
},
pre: {
'/api/': {
target: 'http://localhost:38081/',
changeOrigin: true,
},
},
};