mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
79095bc500
Extracting the logic that defines if a page is blocked to utils. If that refactor make sense, I will create a next PR to cover both of the functions inside utils with tests.
21 lines
368 B
JavaScript
21 lines
368 B
JavaScript
import { BLOCKED_PAGES } from 'next-server/constants'
|
|
|
|
const internalPrefixes = [
|
|
/^\/_next\//,
|
|
/^\/static\//
|
|
]
|
|
|
|
export function isInternalUrl (url) {
|
|
for (const prefix of internalPrefixes) {
|
|
if (prefix.test(url)) {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
export function isBlockedPage (pathname) {
|
|
return (BLOCKED_PAGES.indexOf(pathname) !== -1)
|
|
}
|