Rocky_Mountain_Vending/.pnpm-store/v10/files/91/0e816b6b12d2cb1fe9af35484f7dc13949b7dac92c2f10c62a5655ba7770b0839ef9122079345feb2e6da5cbc13d1341ee8b034713270fb84147fc2e494171
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

7 lines
281 B
Text

import type { Normalizer } from '../normalizer';
export declare class PrefixPathnameNormalizer implements Normalizer {
private readonly prefix;
constructor(prefix: string);
match(pathname: string): boolean;
normalize(pathname: string, matched?: boolean): string;
}