You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"The 'todo' example requires a database if a backend (other than Convex) is present. Cannot use --examples todo when database is 'none' and a backend is selected.",
"Cannot use '--examples' when '--api' is set to 'none'. Please remove the --examples flag or choose an API type.",
378
+
"Cannot use '--examples todo' when '--api' is set to 'none'. The todo example requires an API layer. Please remove 'todo' from --examples or choose an API type.",
380
379
);
381
380
}
382
381
}
@@ -430,6 +429,7 @@ export function validateFullConfig(
430
429
config.backend,
431
430
config.database,
432
431
config.frontend??[],
432
+
config.api,
433
433
);
434
434
435
435
validatePaymentsCompatibility(
@@ -461,6 +461,7 @@ export function validateConfigForProgrammaticUse(config: Partial<ProjectConfig>)
0 commit comments