first commit
This commit is contained in:
25
config/proxy_dev.ts
Normal file
25
config/proxy_dev.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user