Files
supersonic/webapp/packages/supersonic-fe/config/proxy.ts
jerryjzhang dc4fc69b57 first commit
2023-06-12 18:44:01 +08:00

17 lines
309 B
TypeScript

export default {
dev: {
'/api/chat/': {
target: 'http://localhost:9080',
changeOrigin: true,
},
'/api/semantic/': {
target: 'http://localhost:9081',
changeOrigin: true,
},
'/api/': {
target: 'http://localhost:9080',
changeOrigin: true,
},
},
};