File size: 341 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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'
}