Files
SMT-Production-Management-F…/config/proxy_dev.ts
2026-05-05 22:55:31 +07:00

26 lines
488 B
TypeScript

const proxyDev: Record<string, any> = {
dev: {
'/api': {
target: 'https://apisanxuat.nguyennhatminh.io.vn',
changeOrigin: true,
secure: false,
},
},
test: {
'/api': {
target: 'https://apisanxuat.nguyennhatminh.io.vn',
changeOrigin: true,
secure: false,
},
},
prod: {
'/api': {
target: 'https://apisanxuat.nguyennhatminh.io.vn',
changeOrigin: true,
secure: false,
},
},
};
export default proxyDev;