Rocky_Mountain_Vending/.pnpm-store/v10/files/58/4e5d49207e45984e1719e26eb372dae3b3ef231f02b1988e2d296c4a5791db1c767bb3204e2ea77da7b466d320fcc4618df9aae075220f4d061a2efbca970f
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
239 B
Text

export const getResolvedHostname = (resolvedRegion, { regionHostname, partitionHostname }) => regionHostname
? regionHostname
: partitionHostname
? partitionHostname.replace("{region}", resolvedRegion)
: undefined;