bpms_site/.svn/pristine/6f/6fc0afc0afde67d0404e24c24616d40b873aad0a.svn-base
2025-11-02 16:38:49 +03:30

11 lines
339 B
Plaintext

export const normalizeLocalePath = (pathname, locales)=>{
if (process.env.__NEXT_I18N_SUPPORT) {
return require("../shared/lib/i18n/normalize-locale-path").normalizeLocalePath(pathname, locales);
}
return {
pathname,
detectedLocale: undefined
};
};
//# sourceMappingURL=normalize-locale-path.js.map