fix convex forced frontend

This commit is contained in:
Aman Varshney
2025-05-28 09:21:19 +05:30
parent 1c2e8f12ac
commit 9ed546ca0c

View File

@@ -268,17 +268,6 @@ const analyzeStackCompatibility = (stack: StackState): CompatibilityResult => {
message: "Removed incompatible web frontends (Nuxt, Solid)", message: "Removed incompatible web frontends (Nuxt, Solid)",
}); });
} }
if (
nextStack.webFrontend.length === 0 ||
nextStack.webFrontend[0] === "none"
) {
nextStack.webFrontend = ["tanstack-router"];
changed = true;
changes.push({
category: "convex",
message: "Web Frontend defaulted to TanStack Router",
});
}
if (nextStack.nativeFrontend[0] === "none") { if (nextStack.nativeFrontend[0] === "none") {
} else { } else {
} }