From 3d5c23e29ce09870a0a2f31610ca611b5b726f77 Mon Sep 17 00:00:00 2001 From: Arjuna Date: Sat, 10 Jan 2026 13:27:10 +0700 Subject: [PATCH] hotfix: kinda stupid, but who knows --- Backend/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Backend/main.go b/Backend/main.go index 92f592a..f7ac912 100644 --- a/Backend/main.go +++ b/Backend/main.go @@ -32,7 +32,7 @@ func main() { r := gin.Default() r.Use(cors.New(cors.Config{ - AllowOrigins: []string{"http://localhost:5173", "http://100.111.195.90:3001", "https://core-life.arjunaa.my.id/"}, + AllowOrigins: []string{"http://localhost:5173", "http://100.111.195.90:3001", "https://core-life.arjunaa.my.id"}, AllowMethods: []string{"GET", "POST", "PUT", "DELETE"}, AllowHeaders: []string{"Origin", "Content-Type", "Accept", "Authorization"}, AllowCredentials: true,