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>
14 lines
No EOL
387 B
Text
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 |