Skip to content

Commit

Permalink
Merge pull request #30 from potenday-project/develop
Browse files Browse the repository at this point in the history
운영 웹 URL 앞에 www. 추가
  • Loading branch information
HwangHoYoon authored Dec 16, 2023
2 parents dbb92ca + 0088ce2 commit 90e2fce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public CorsConfigurationSource corsConfigurationSource() {
CorsConfiguration config = new CorsConfiguration();

config.setAllowCredentials(true);
config.setAllowedOrigins(List.of("http://localhost:3000", "https://tikitaka.chat", "https://tikitakachatdata.com"));
config.setAllowedOrigins(List.of("http://localhost:3000", "https://tikitaka.chat", "https://www.tikitaka.chat", "https://tikitakachatdata.com"));
config.setAllowedMethods(List.of("GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS"));
config.setAllowedHeaders(List.of("*"));
config.setExposedHeaders(List.of("*"));
Expand Down

0 comments on commit 90e2fce

Please sign in to comment.