File size: 360 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
import type { detectDomainLocale as Fn } from '../shared/lib/i18n/detect-domain-locale'
export const detectDomainLocale: typeof Fn = (...args) => {
if (process.env.__NEXT_I18N_SUPPORT) {
return (
require('../shared/lib/i18n/detect-domain-locale') as typeof import('../shared/lib/i18n/detect-domain-locale')
).detectDomainLocale(...args)
}
}
|