1 files changed, 1 insertions, 1 deletions
diff --git a/src/Server.ts b/src/Server.ts
index 6d1d5009..f9c2619e 100644
--- a/src/Server.ts
+++ b/src/Server.ts
@@ -163,7 +163,7 @@ export class FosscordServer extends Server {
indexHTML
.replace(
/CDN_HOST: ".+"/,
- `CDN_HOST: "${(Config.get().cdn.endpoint || "http://localhost:3003").replace(/https?:/, "")}"`
+ `CDN_HOST: "${(Config.get().cdn.endpoint || process.env.CDN || "http://localhost:3003").replace(/https?:/, "")}"`
)
.replace(
/GATEWAY_ENDPOINT: ".+"/,
|