Skip to content

Commit

Permalink
chore: Added a fallback lang
Browse files Browse the repository at this point in the history
  • Loading branch information
FleetAdmiralJakob committed Jan 13, 2024
1 parent a3a0249 commit d8925c1
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions apps/web/next-i18next.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
/** @type {import('next-i18next').UserConfig} */
module.exports = {
i18n: {
defaultLocale: 'en',
locales: ['en', 'de']
}
}
defaultLocale: "en",
locales: ["en", "de"],
},
fallbackLng: {
default: ["en"],
},
};

1 comment on commit d8925c1

@vercel
Copy link

@vercel vercel bot commented on d8925c1 Jan 13, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.