react-code-dataset / next.js /packages /next /src /lib /is-internal-component.ts
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
export function isInternalComponent(pathname: string): boolean {
switch (pathname) {
case 'next/dist/pages/_app':
case 'next/dist/pages/_document':
return true
default:
return false
}
}
export function isNonRoutePagesPage(pathname: string): boolean {
return pathname === '/_app' || pathname === '/_document'
}