15 lines
325 B
TypeScript
15 lines
325 B
TypeScript
import { DEFAULT_LOCALE, SUPPORTED_LOCALES } from '@appConstants';
|
|
|
|
export default defineAppConfig({
|
|
i18n: {
|
|
supportedLocales: SUPPORTED_LOCALES,
|
|
defaultLocale: DEFAULT_LOCALE,
|
|
},
|
|
ui: {
|
|
showBreadcrumbs: true,
|
|
showSearchBar: true,
|
|
isHeaderFixed: true,
|
|
isAuthModals: false,
|
|
toastPosition: 'top-right',
|
|
},
|
|
});
|