We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d67def commit 790a724Copy full SHA for 790a724
src/main/java/com/DecodEat/global/config/CorsConfig.java
@@ -16,7 +16,7 @@ public CorsConfigurationSource corsConfigurationSource() {
16
CorsConfiguration configuration = new CorsConfiguration();
17
18
configuration.setAllowedOriginPatterns(List.of( "https://decodeat.netlify.app",
19
- "http://localhost:8080","http://localhost:5173" ));
+ "http://localhost:8080","http://localhost:5173", "http://decodeat.store", "https://decodeat.store" ));
20
configuration.setAllowedMethods(List.of("GET", "POST", "PUT", "DELETE", "OPTIONS"));
21
configuration.setAllowedHeaders(List.of("*"));
22
configuration.setAllowCredentials(true); // 쿠키/인증정보 포함 허용
0 commit comments