Rocky_Mountain_Vending/.pnpm-store/v10/files/5f/7972cd16c87ee274d3c1465d4955f35e0564efaa5ac5914bed42e35dd69cd4d0c839720c5190bf46ef76f4e74090006d157b66f0d9dbd9f2cdcb0f9b22ede6
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

31 lines
No EOL
903 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "PrefetchRSCPathnameNormalizer", {
enumerable: true,
get: function() {
return PrefetchRSCPathnameNormalizer;
}
});
const _constants = require("../../../lib/constants");
const _suffix = require("./suffix");
class PrefetchRSCPathnameNormalizer extends _suffix.SuffixPathnameNormalizer {
constructor(){
super(_constants.RSC_PREFETCH_SUFFIX);
}
match(pathname) {
if (pathname === '/__index' + _constants.RSC_PREFETCH_SUFFIX) {
return true;
}
return super.match(pathname);
}
normalize(pathname, matched) {
if (pathname === '/__index' + _constants.RSC_PREFETCH_SUFFIX) {
return '/';
}
return super.normalize(pathname, matched);
}
}
//# sourceMappingURL=prefetch-rsc.js.map