Skip to content

Commit

Permalink
refactor: 오탈자 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
dgjinsu committed Nov 16, 2023
1 parent 8b26030 commit d3127c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/jikgong/global/config/CorsConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public CorsConfigurationSource corsConfigurationSource() {
CorsConfiguration config = new CorsConfiguration();

config.setAllowCredentials(true);
config.setAllowedOrigins(List.of("http://localhost:8080rrrrrr"));
config.setAllowedOrigins(List.of("http://localhost:8080"));
config.setAllowedMethods(List.of("GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS"));
config.setAllowedHeaders(List.of("*"));
config.setExposedHeaders(List.of("*"));
Expand Down

0 comments on commit d3127c1

Please sign in to comment.