sozsoft-platform/ui/src/proxy/configs/app.config.ts
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

14 lines
390 B
TypeScript

import { ROUTES_ENUM } from '@/routes/route.constant'
import { AppConfig } from './models'
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