We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f2d314 commit f65ac77Copy full SHA for f65ac77
packages/builders/src/types.ts
@@ -27,5 +27,5 @@ export interface WorkflowConfig {
27
export function isValidBuildTarget(
28
target: string | undefined
29
): target is BuildTarget {
30
- return target === 'standalone' || target === 'vercel-build-output-api';
+ return !!target && validBuildTargets.includes(target as BuildTarget);
31
}
0 commit comments