From f2bd71183fa63a3f2f8bf5808246de10fc09c85d Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Wed, 22 Apr 2026 14:11:59 +0200 Subject: [PATCH] chore(cors): update frontend URL to apoena.dev domain --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 409a58f..bfd8171 100644 --- a/src/main.ts +++ b/src/main.ts @@ -5,7 +5,7 @@ const DEEPL_API_KEY = Deno.env.get("DEEPL_AUTH_KEY"); const BEARER_TOKEN = Deno.env.get("BEARER_TOKEN"); const PORT = parseInt(Deno.env.get("PORT") || "8000"); const DEEPL_API_BASE = "https://api-free.deepl.com/v2"; -const FRONTEND_URLS = ["http://localhost", "https://deep-lite.netlify.app"]; +const FRONTEND_URLS = ["http://localhost", "https://deeplite.apoena.dev"]; if (!DEEPL_API_KEY) { console.error("ERROR: DEEPL_AUTH_KEY environment variable is required");