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