26 lines
488 B
TypeScript
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;
|