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

26 lines
490 B
TypeScript

const proxyProd: 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 proxyProd;