mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-20 08:13:23 +00:00
21 lines
330 B
TypeScript
21 lines
330 B
TypeScript
export default {
|
|
dev: {
|
|
'/api/': {
|
|
target: 'http://localhost:38081/',
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
test: {
|
|
'/api/': {
|
|
target: 'http://localhost:38081/',
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
pre: {
|
|
'/api/': {
|
|
target: 'http://localhost:38081/',
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
};
|