Rocky_Mountain_Vending/.pnpm-store/v10/files/0f/5614fa21fe3c349e7c99e3cb0ba2b6a46ce5215294c9176c69778eb7cc7f4cda84022e8391fa1eaf77c7a0b5ce94742335185e0e412b8e5e5776846eebdd21
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

8 lines
No EOL
312 B
Text

import { getPathMatch } from '../../shared/lib/router/utils/path-match';
const matcher = getPathMatch('/_next/data/:path*');
export function matchNextDataPathname(pathname) {
if (typeof pathname !== 'string') return false;
return matcher(pathname);
}
//# sourceMappingURL=match-next-data-pathname.js.map