Rocky_Mountain_Vending/.pnpm-store/v10/files/ca/ca87e55c50efec8879a31077a7b21cc2501e241df6c844a7b95694b57c26efa176b6aba8331db8697df3024911a0e1728c97a81ddef819ac9945de4b6b6132
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

9 lines
464 B
Text

export declare function isExternalURL(url: URL): boolean;
/**
* Given a link href, constructs the URL that should be prefetched. Returns null
* in cases where prefetching should be disabled, like external URLs, or
* during development.
* @param href The href passed to <Link>, router.prefetch(), or similar
* @returns A URL object to prefetch, or null if prefetching should be disabled
*/
export declare function createPrefetchURL(href: string): URL | null;