next-intl locale is undefined in docker containers
Unanswered
zrndzdnz posted this in #help-forum
zrndzdnzOP
Hi, for some reason when I run freshly built docker image, it throws on entering the page:
Config:
That's how I import locales in my pages:
Error doesn't show up when I do
⨯ Error: Cannot find module './undefined.json'
2025-03-17T19:18:17.813755894Z at /app/.next/server/pages/index.js:1:8936
2025-03-17T19:18:17.813761114Z at async v (/app/.next/server/pages/index.js:1:8696)
2025-03-17T19:18:17.813764984Z at async e3 (/app/node_modules/next/dist/compiled/next-server/pages.runtime.prod.js:25:3930)
2025-03-17T19:18:17.813768694Z at async doRender (/app/node_modules/next/dist/server/base-server.js:1414:30)
2025-03-17T19:18:17.813772315Z at async cacheEntry.responseCache.get.routeKind (/app/node_modules/next/dist/server/base-server.js:1588:28)
2025-03-17T19:18:17.813775915Z at async /app/node_modules/next/dist/server/response-cache/index.js:90:36
2025-03-17T19:18:17.813779375Z at async /app/node_modules/next/dist/lib/batcher.js:45:32 {
2025-03-17T19:18:17.813782875Z code: 'MODULE_NOT_FOUND'
2025-03-17T19:18:17.813786385Z }
Config:
const nextConfig = {
reactStrictMode: true,
staticPageGenerationTimeout: 180,
i18n: {
locales: ['en', 'pl'],
defaultLocale: 'en',
localeDetection: false,
}
}
That's how I import locales in my pages:
export async function getStaticProps(context: GetStaticPropsContext) {
const locale = context.locale || 'en'
return {
props: {
messages: (await import(`../locales/${locale}.json`)).default
}
}
}
Error doesn't show up when I do
next build & run
locally. I thought locale files might be missing, but I went into container with bash exec and everything is in place, so no idea, maybe context
has undefined params in docker for some reason.1 Reply
zrndzdnzOP
bump