13 lines
332 B
TypeScript
13 lines
332 B
TypeScript
interface apiConfigProps {
|
|
service_dashboard: string;
|
|
service_master_data: string;
|
|
}
|
|
|
|
const API_URL = import.meta.env.VITE_APP_API_URL;
|
|
const apiConfig: apiConfigProps = {
|
|
service_dashboard: `${API_URL}${import.meta.env.VITE_ENV != 'development' ? '/d' : ""}`,
|
|
service_master_data: `${API_URL}/m`,
|
|
};
|
|
|
|
export { apiConfig };
|