schon/storefront/app/app.config.ts
2026-02-27 21:59:51 +03:00

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',
},
});