// Minimal vue-i18n config. The marketing site keeps its translations in the // hand-authored COPY object (utils/landingCopy.ts) and reads them via // useCopy(); @nuxtjs/i18n is used only for locale routing + SEO (hreflang, // canonical, ), so the message catalogues stay empty. export default defineI18nConfig(() => ({ legacy: false, locale: 'en', fallbackLocale: 'en', messages: { en: {}, da: {} }, }))