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 83e9b69 commit f3b959aCopy full SHA for f3b959a
npm-packages/convex/src/common/index.ts
@@ -49,7 +49,10 @@ export function validateDeploymentUrl(deploymentUrl: string) {
49
return;
50
}
51
52
- if (!deploymentUrl.endsWith(".convex.cloud")) {
+ if (
53
+ !deploymentUrl.endsWith(".convex.cloud") &&
54
+ !deploymentUrl.includes("0.0.0.0")
55
+ ) {
56
throw new Error(
57
`Invalid deployment address: Must end with ".convex.cloud". Found "${deploymentUrl}".`,
58
);
0 commit comments