react-code-dataset / next.js /packages /next /src /server /get-app-route-from-entrypoint.ts
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import matchBundle from './match-bundle'
// matches app/:path*.js
const APP_ROUTE_NAME_REGEX = /^app[/\\](.*)$/
export default function getAppRouteFromEntrypoint(entryFile: string) {
const pagePath = matchBundle(APP_ROUTE_NAME_REGEX, entryFile)
if (typeof pagePath === 'string' && !pagePath) {
return '/'
}
if (!pagePath) {
return null
}
return pagePath
}