Rocky_Mountain_Vending/.pnpm-store/v10/files/e9/00f22c523526fe7292b90edf7772632f26671b64ca73ba31a8bfb914a1415b7b8e350eb43e4ddae2d7e54f4183b1a2b2940e81db715a6aee028f9ea6d4db28
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

4 lines
144 B
Text

export function isValidHostname(hostname) {
const hostPattern = /^[a-z0-9][a-z0-9\.\-]*[a-z0-9]$/;
return hostPattern.test(hostname);
}