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