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

21 lines
401 B
TypeScript
Raw Normal View History

import { BLOCKED_PAGES } from 'next-server/constants'
2018-10-01 22:55:31 +00:00
const internalPrefixes = [
/^\/_next\//,
/^\/static\//,
2018-10-01 22:55:31 +00:00
]
export function isInternalUrl(url: string): boolean {
2018-10-01 22:55:31 +00:00
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)
}