erp-platform/ui/src/configs/app.config.ts
Sedat ÖZTÜRK e1a9562b22 init project
2025-05-06 09:45:49 +03:00

23 lines
529 B
TypeScript

import { ROUTES_ENUM } from '@/constants/route.constant'
export type AppConfig = {
baseUrl: string
apiPrefix: string
authenticatedEntryPath: string
unAuthenticatedEntryPath: string
tourPath: string
locale: string
uiVersion: string | undefined
}
const appConfig: AppConfig = {
baseUrl: import.meta.env.VITE_API_URL,
apiPrefix: '/api',
authenticatedEntryPath: '/home',
unAuthenticatedEntryPath: ROUTES_ENUM.account.login,
tourPath: '/',
locale: 'en',
uiVersion : undefined
}
export default appConfig