Updated the SVG logo file in storefront to replace evibes branding with schon. Includes enhanced styling and additional view properties for resolution compatibility.
14 lines
No EOL
398 B
TypeScript
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'
|
|
}
|
|
}; |