Rocky_Mountain_Vending/.pnpm-store/v10/files/ee/448a74a5ec902596a7d9ddb0baff55af87c9e6e8809122ade4fe036719cb1fe9f7f1554cb80428eebddc9fa19db6aeee0e8fe50a5a38f02c03010b806ebaa0
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

21 lines
No EOL
646 B
Text

import { RSC_PREFETCH_SUFFIX } from '../../../lib/constants';
import { SuffixPathnameNormalizer } from './suffix';
export class PrefetchRSCPathnameNormalizer extends SuffixPathnameNormalizer {
constructor(){
super(RSC_PREFETCH_SUFFIX);
}
match(pathname) {
if (pathname === '/__index' + RSC_PREFETCH_SUFFIX) {
return true;
}
return super.match(pathname);
}
normalize(pathname, matched) {
if (pathname === '/__index' + RSC_PREFETCH_SUFFIX) {
return '/';
}
return super.normalize(pathname, matched);
}
}
//# sourceMappingURL=prefetch-rsc.js.map