Skip to content

Commit

Permalink
Merge branch 'release/0.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
MetaverseUnknower committed Oct 22, 2023
2 parents 90df590 + afd60fe commit fd7de45
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ export abstract class VLMEnvironment {
private static wssUrls: { [env: string]: string } = {
dev: "ws://localhost:3010",
staging: "wss://staging-api.vlm.gg",
prod: "wss://api2.vlm.gg",
prod: "wss://api.vlm.gg",
};

private static apiUrls: { [env: string]: string } = {
dev: "http://localhost:3010",
staging: "https://staging-api.vlm.gg",
prod: "https://api2.vlm.gg",
prod: "https://api.vlm.gg",
};

static apiUrl: string = "https://api2.vlm.gg";
static wssUrl: string = "wss://api2.vlm.gg";
static apiUrl: string = "https://api.vlm.gg";
static wssUrl: string = "wss://api.vlm.gg";

static init: CallableFunction = async (env: string) => {
try {
Expand Down

0 comments on commit fd7de45

Please sign in to comment.