Rocky_Mountain_Vending/.pnpm-store/v10/files/8e/7a6bf89e2d9f459c39ee3a28479a09d997888a2a3612a138ed517d5a9f30cda70244fea4dd3c3734e787f940a68be3150f5b7604602ec5d5f300b8d279e296
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

5 lines
254 B
Text

/**
* @param url - URL we want to extract a hostname from.
* @param urlIsValidHostname - hint from caller; true if `url` is already a valid hostname.
*/
export default function extractHostname(url: string, urlIsValidHostname: boolean): string | null;