Rocky_Mountain_Vending/.pnpm-store/v10/files/64/804a7801c7279c1ac7739697022492ff9da44e91fc43a77372b9592934b94e6a0539957db4545a6c22599fd4684c89a9807f14a11014b5b72f2fc3db3513fc
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

11 lines
No EOL
314 B
Text

import path from '../../shared/lib/isomorphic/path';
export class PrefixingNormalizer {
constructor(...prefixes){
this.prefix = path.posix.join(...prefixes);
}
normalize(pathname) {
return path.posix.join(this.prefix, pathname);
}
}
//# sourceMappingURL=prefixing-normalizer.js.map