Rocky_Mountain_Vending/.pnpm-store/v10/files/f1/5b3941cd5694c4888191f9aca4505b0558747574619d2ad3f585202b750254ecac342ca94c7930ce75c3025b9a285df7b46b452afbbfbac904bd8ae41e9e04
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
422 B
Text

import { CachedRouteMatcherProvider } from './helpers/cached-route-matcher-provider';
export class ManifestRouteMatcherProvider extends CachedRouteMatcherProvider {
constructor(manifestName, manifestLoader){
super({
load: async ()=>manifestLoader.load(manifestName),
compare: (left, right)=>left === right
});
}
}
//# sourceMappingURL=manifest-route-matcher-provider.js.map