App Config

You can configure various static app settings in src/configs/app.config.ts. Below are the default configurations for both the demo and starter versions.

Demo Configuration
const appConfig: AppConfig = {
    apiPrefix: '/api',
    authenticatedEntryPath: '/dashboards/ecommerce',
    unAuthenticatedEntryPath: '/sign-in',
    locale: 'en',
    activeNavTranslation: true
}
Starter Configuration
const appConfig: AppConfig = {
    apiPrefix: '/api',
    authenticatedEntryPath: '/home',
    unAuthenticatedEntryPath: '/sign-in',
    locale: 'en',
    activeNavTranslation: false
}
Configuration Metadata
PropertyDescriptionTypeDefault (Demo)Default (Starter)
apiPrefixThe base path for all API requests.string'/api''/api'
authenticatedEntryPathThe path users are redirected to after successful authentication.string'/app/sales/dashboard''/home'
unAuthenticatedEntryPathThe path users are redirected to if they are not authenticated.string'/sign-in''/sign-in'
localeThe default language/locale for the app.string'en''en'
activeNavTranslationEnables or disables the tranlation fucntionality that implmented in navigation.booleantruefalse