first commit

This commit is contained in:
2026-05-05 22:55:31 +07:00
commit c2c7f91e88
48 changed files with 38159 additions and 0 deletions

25
config/proxy_dev.ts Normal file
View 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;