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

Function isPythonFramework

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

Source from the content-addressed store, hash-verified

65}
66
67export function isPythonFramework(
68 framework: string | null | undefined
69): framework is (typeof PYTHON_FRAMEWORKS)[number] {
70 if (!framework) return false;
71 return PYTHON_FRAMEWORKS.includes(framework as PythonFramework);
72}
73
74// Opt builds into experimental builder, but don't introspect the app
75export function isExperimentalBackendsWithoutIntrospectionEnabled(): boolean {

Callers 6

buildFunction · 0.90
shouldServeFunction · 0.90
detectEntrypointFunction · 0.90
getBuildMatchesFunction · 0.90
createDetectEntrypointFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected