Rocky_Mountain_Vending/.pnpm-store/v10/files/fe/8c9047ce0c430d50b93a6165b156046b7bf4b28ca5832ebf69181907228a4b7f20a1158e2d17910da9c0bc55b14c3e858eb20936ee3c73f2d30e040b20a469
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

15 lines
No EOL
525 B
Text

import { PrefixPathnameNormalizer } from './prefix';
export class BasePathPathnameNormalizer extends PrefixPathnameNormalizer {
constructor(basePath){
if (!basePath || basePath === '/') {
throw Object.defineProperty(new Error('Invariant: basePath must be set and cannot be "/"'), "__NEXT_ERROR_CODE", {
value: "E154",
enumerable: false,
configurable: true
});
}
super(basePath);
}
}
//# sourceMappingURL=base-path.js.map