fix(gatekeeper): add missing i18n configuration to fix build failure
Some checks failed
Code Quality / lint-and-build (push) Failing after 50s
Release Packages / release (push) Failing after 37s

This commit is contained in:
2026-02-02 11:37:13 +01:00
parent 10a6b5e11a
commit bb8665212a
4 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
{
"LoginPage": {
"title": "Gatekeeper"
}
}

View File

@@ -11,9 +11,11 @@
"test": "vitest run"
},
"dependencies": {
"@mintel/next-utils": "workspace:*",
"clsx": "^2.1.1",
"lucide-react": "^0.474.0",
"next": "15.1.6",
"next-intl": "^3.26.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^2.6.0"

View File

@@ -0,0 +1,7 @@
import { createMintelI18nRequestConfig } from "@mintel/next-utils";
export default createMintelI18nRequestConfig(
["en"],
"en",
(locale) => import(`../../messages/${locale}.json`),
);