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>
5 lines
213 B
Text
5 lines
213 B
Text
import { IOptions } from './options';
|
|
/**
|
|
* Detects the domain based on rules and upon and a host string
|
|
*/
|
|
export default function getDomain(suffix: string, hostname: string, options: IOptions): string | null;
|