Files
FE-DEVICE-SGW/config/proxy.ts
2025-10-08 09:38:54 +07:00

25 lines
431 B
TypeScript

const proxy: Record<string, any> = {
dev: {
'/api': {
target: 'http://192.168.30.85:9001',
changeOrigin: true,
},
},
test: {
'/test': {
target: 'https://test-sgw-device.gms.vn',
changeOrigin: true,
secure: false,
},
},
prod: {
'/test': {
target: 'https://prod-sgw-device.gms.vn',
changeOrigin: true,
secure: false,
},
},
};
export default proxy;