Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
9 lines
No EOL
343 B
Text
9 lines
No EOL
343 B
Text
import { normalizePathTrailingSlash } from './normalize-trailing-slash';
|
|
export const addLocale = (path, ...args)=>{
|
|
if (process.env.__NEXT_I18N_SUPPORT) {
|
|
return normalizePathTrailingSlash(require('../shared/lib/router/utils/add-locale').addLocale(path, ...args));
|
|
}
|
|
return path;
|
|
};
|
|
|
|
//# sourceMappingURL=add-locale.js.map |