From 71991c376cde2c76630aa3eca0a7e6d7ccbf9e86 Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Thu, 9 Oct 2025 20:37:34 -0400 Subject: [PATCH] Changed allowed urls --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.rs b/src/main.rs index 5ca9900..0146e3c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -97,6 +97,8 @@ pub mod init { cors.allow_origin(vec![ "http://localhost:3000".parse().unwrap(), "http://127.0.0.1:3000".parse().unwrap(), + "http://localhost:8000".parse().unwrap(), + "http://127.0.0.1:8000".parse().unwrap(), "http://localhost:8001".parse().unwrap(), "http://127.0.0.1:8001".parse().unwrap(), "http://localhost:4200".parse().unwrap(),