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>
8 lines
No EOL
433 B
Text
8 lines
No EOL
433 B
Text
import { addPathPrefix } from '../shared/lib/router/utils/add-path-prefix';
|
|
import { normalizePathTrailingSlash } from './normalize-trailing-slash';
|
|
const basePath = process.env.__NEXT_ROUTER_BASEPATH || '';
|
|
export function addBasePath(path, required) {
|
|
return normalizePathTrailingSlash(process.env.__NEXT_MANUAL_CLIENT_BASE_PATH && !required ? path : addPathPrefix(path, basePath));
|
|
}
|
|
|
|
//# sourceMappingURL=add-base-path.js.map |