1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/packages/next-server/server/utils.ts
2018-12-09 22:46:45 +01:00

21 lines
402 B
TypeScript

import { BLOCKED_PAGES } from 'next-server/constants'
const internalPrefixes = [
/^\/_next\//,
/^\/static\//
]
export function isInternalUrl (url: string): boolean {
for (const prefix of internalPrefixes) {
if (prefix.test(url)) {
return true
}
}
return false
}
export function isBlockedPage (pathname: string): boolean {
return (BLOCKED_PAGES.indexOf(pathname) !== -1)
}