erp-platform/ui/src/configs/app.config.ts
Sedat ÖZTÜRK 8cc8ed07f9 Düzenleme
2025-08-11 09:34:44 +03:00

23 lines
556 B
TypeScript

import { ROUTES_ENUM } from "@/routes/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: ROUTES_ENUM.protected.dashboard,
unAuthenticatedEntryPath: ROUTES_ENUM.authenticated.login,
tourPath: '/',
locale: 'en',
uiVersion : undefined
}
export default appConfig