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 66c1da2 commit 11ad860Copy full SHA for 11ad860
src/publish/quarto-pub/api/index.ts
@@ -31,15 +31,9 @@ export class QuartoPubClient {
31
this.baseURL_ = "http://localhost:3000/api/v1";
32
break;
33
34
- case "DEV":
35
- this.baseURL_ = "https://quartodev.pub/api/v1";
36
- break;
37
-
38
case "PRODUCTION":
39
default:
40
- // TODO: Eventually this will point to the live site, when we know the domain.
41
- // For now, it points to the DEV environment.
42
- this.baseURL_ = "https://quartopub.org/api/v1";
+ this.baseURL_ = "https://quartopub.com/api/v1";
43
44
}
45
0 commit comments