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

Function getFrameworkDisplayName

packages/python/src/entrypoint.ts:88–101  ·  view source on GitHub ↗
(framework: string)

Source from the content-addressed store, hash-verified

86}
87
88function getFrameworkDisplayName(framework: string): string {
89 switch (framework) {
90 case 'fastapi':
91 return 'FastAPI';
92 case 'flask':
93 return 'Flask';
94 case 'django':
95 return 'Django';
96 case 'fasthtml':
97 return 'FastHTML';
98 default:
99 return framework;
100 }
101}
102
103function getFrameworkEntrypointDocsUrl(framework: string): string {
104 switch (framework) {

Callers 2

getMissingExportMessageFunction · 0.85
makeDiagnosticErrorFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected