Files
revenue-fe/src/config/api.config.ts
2025-02-20 21:54:43 +07:00

15 lines
393 B
TypeScript

interface apiConfigProps {
service_dashboard: string;
service_master_data: string;
}
const API_URL = import.meta.env.VITE_APP_API_URL;
console.log(API_URL);
const apiConfig: apiConfigProps = {
// service_dashboard: `${API_URL}${import.meta.env.VITE_ENV != 'development' ? '/d' : ''}`,
service_dashboard: `${API_URL}/d`,
service_master_data: `${API_URL}/m`
};
export { apiConfig };