diff --git a/README.md b/README.md
index 2465439..c010812 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,18 @@
-
-
-[](https://github.com/devcavin/gatelog/actions/workflows/backend-ci.yaml)
-
-[](https://github.com/devcavin/gatelog/actions/workflows/deploy-render.yaml)
-
-[](https://github.com/devcavin/gatelog/actions/workflows/frontend-ci.yaml)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -22,7 +30,7 @@ The project is built to demonstrate end-to-end product engineering: system desig
---
## Live Demo
-- Frontend - [htts://gatelogapp.vercel.app](htts://gatelogapp.vercel.app)
+- Frontend - [https://gatelogapp.vercel.app](https://gatelogapp.vercel.app)
---
diff --git a/backend/src/main/kotlin/io/github/devcavin/backend/security/SecurityConfig.kt b/backend/src/main/kotlin/io/github/devcavin/backend/security/SecurityConfig.kt
index 6286dc8..a2f79e3 100644
--- a/backend/src/main/kotlin/io/github/devcavin/backend/security/SecurityConfig.kt
+++ b/backend/src/main/kotlin/io/github/devcavin/backend/security/SecurityConfig.kt
@@ -50,7 +50,7 @@ class SecurityConfig(
@Bean
fun corsConfigurationSource(): CorsConfigurationSource {
val config = CorsConfiguration()
- config.allowedOrigins = corsProperties.allowedOrigins
+ config.allowedOrigins = listOf(corsProperties.allowedOrigins)
config.allowedMethods = listOf("GET", "POST", "PUT", "PATCH", "DELETE", "OPTIONS")
config.allowedHeaders = listOf("*")
config.allowCredentials = true
@@ -62,7 +62,8 @@ class SecurityConfig(
@Configuration
@ConfigurationProperties(prefix = "gatelog.cors")
+
class CorsProperties {
- var allowedOrigins: List
? = listOf("http://localhost:5173")
+ lateinit var allowedOrigins: String
}
}
\ No newline at end of file