Skip to content

Commit 629786e

Browse files
committed
fix: update default realm and auth URL for production environment
1 parent 217619b commit 629786e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/ally-solvro-auth/src/driver.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,10 @@ export class SolvroAuthDriver
135135
}
136136

137137
if (process.env.NODE_ENV === "production") {
138-
this.config.realm = this.config.realm || "solvro_apps";
138+
this.config.realm = this.config.realm || "solvro";
139+
140+
this.config.solvroAuthUrl =
141+
this.config.solvroAuthUrl || "https://auth.s.solvro.com";
139142
}
140143

141144
if (this.config.solvroAuthUrl) {

0 commit comments

Comments
 (0)