Rocky_Mountain_Vending/.pnpm-store/v10/files/f7/31df68dab9ca22bde8356f5da5cb2319931f94c2d11075023c31920bea1899fe91145b68b1d8214d97a4e48a9d8a3251e151392c2e0b86bb15242797f82197
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

10 lines
No EOL
373 B
Text

import { RouteKind } from '../route-kind';
/**
* Checks if the given match is a Pages API route match.
* @param match the match to check
* @returns true if the match is a Pages API route match, false otherwise
*/ export function isPagesAPIRouteMatch(match) {
return match.definition.kind === RouteKind.PAGES_API;
}
//# sourceMappingURL=pages-api-route-match.js.map