Rocky_Mountain_Vending/.pnpm-store/v10/files/38/c9a346684e31ebb481557a8c45df23236d94b7a1f68ef6df67e5129fc8038288e2d862e2ae20724f6b0297e8da524a14fab5b367cc81fde8cc6be0f1e8267a
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

14 lines
No EOL
387 B
Text

export function isInternalComponent(pathname) {
switch(pathname){
case 'next/dist/pages/_app':
case 'next/dist/pages/_document':
return true;
default:
return false;
}
}
export function isNonRoutePagesPage(pathname) {
return pathname === '/_app' || pathname === '/_document';
}
//# sourceMappingURL=is-internal-component.js.map