From a61dca8cf5c57e1dd45ea294f645af26f4f96e25 Mon Sep 17 00:00:00 2001 From: Aotumuri Date: Sun, 1 Jun 2025 16:17:05 +0900 Subject: [PATCH] fixed --- src/core/configuration/DefaultConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index 2ce2e47a1..9fb503cfe 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -77,7 +77,7 @@ export abstract class DefaultServerConfig implements ServerConfig { jwtIssuer(): string { const audience = this.jwtAudience(); return audience === "localhost" - ? "https://api-worker-dev.evanpelle.workers.dev" + ? "http://localhost:8787" : `https://api.${audience}`; } async jwkPublicKey(): Promise {