From 0ab3e15784c87c14c0f7cd255891edf53aabb7f7 Mon Sep 17 00:00:00 2001 From: opti1337 Date: Thu, 25 Dec 2025 07:38:07 +0600 Subject: [PATCH] cors origins --- server/server.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/server.ts b/server/server.ts index 22f44ec..2900bbc 100644 --- a/server/server.ts +++ b/server/server.ts @@ -17,6 +17,8 @@ fastify.register(FastifyCors, { origin: [ 'http://localhost:3000', 'http://tauri.localhost', + 'https://koptilnya.xyz', + 'https://chad.koptilnya.xyz', ], credentials: true, })