Rocky_Mountain_Vending/.pnpm-store/v10/files/5b/fa19e0a81839e3eae47b51876c444fcead12de30427faf173b31da5789429bcb061030f70d69320600c4a08dbac9c18f2eb46cf525f003968830b24ca4925e
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
206 B
Text

import type { Normalizer } from '../normalizer';
export interface PathnameNormalizer extends Normalizer {
match(pathname: string): boolean;
normalize(pathname: string, matched?: boolean): string;
}