Rocky_Mountain_Vending/.pnpm-store/v10/files/23/b0336fcbe93cdb9965f18ac0e139c4bd034891ffb25299afdcd61fadb74aa1e0e669fef820b88297722f9ab36c45c483714a911141fce89ce39e268bb2dced
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

14 lines
No EOL
479 B
Text

// TypeScript trick to simulate opaque types, like in Flow.
export function createCacheKey(originalHref, nextUrl) {
// TODO: We should remove the hash from the href and track that separately.
// There's no reason to vary route entries by hash.
const originalUrl = new URL(originalHref);
const cacheKey = {
href: originalHref,
search: originalUrl.search,
nextUrl: nextUrl
};
return cacheKey;
}
//# sourceMappingURL=cache-key.js.map