MCPcopy Create free account
hub / github.com/vercel/vercel / isNodeBackendFramework

Function isNodeBackendFramework

packages/build-utils/src/framework-helpers.ts:60–65  ·  view source on GitHub ↗
(
  framework: string | null | undefined
)

Source from the content-addressed store, hash-verified

58}
59
60export function isNodeBackendFramework(
61 framework: string | null | undefined
62): framework is BackendFramework {
63 if (!framework) return false;
64 return BACKEND_FRAMEWORKS.includes(framework as BackendFramework);
65}
66
67export function isPythonFramework(
68 framework: string | null | undefined

Callers 3

createDetectEntrypointFunction · 0.90
resolveConfiguredServiceFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected