mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-13 04:46:46 +00:00
* Generate restful api based on Swagger As OpenAPI has to be quickly developped to support front-end developement, so did the restufl api docs. Based on swagger, generate the docs automatically * fix conflicts and add application list annotation
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,
|
|
},
|
|
},
|
|
};
|