schon/storefront/config/i18n.ts
Egor fureunoir Gorbunov cc11da01f9 refactor(storefront): replace evibes logo with schon logo in SVG format
Updated the SVG logo file in storefront to replace evibes branding with schon. Includes enhanced styling and additional view properties for resolution compatibility.
2026-02-05 17:23:59 +03:00

14 lines
No EOL
398 B
TypeScript

import { SUPPORTED_LOCALES, DEFAULT_LOCALE } from './constants';
import type { NuxtI18nOptions } from '@nuxtjs/i18n';
export const i18nConfig: NuxtI18nOptions = {
defaultLocale: DEFAULT_LOCALE,
locales: SUPPORTED_LOCALES,
strategy: 'prefix',
detectBrowserLanguage: {
alwaysRedirect: true,
redirectOn: 'root',
fallbackLocale: DEFAULT_LOCALE,
cookieKey: 'schon-locale'
}
};