Skip to content

Commit

Permalink
refactor: CorsProperties 어노테이션 순서 수정 #459
Browse files Browse the repository at this point in the history
  • Loading branch information
leegwichan committed Jan 5, 2025
1 parent e67c074 commit 4db28cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/src/main/java/ddangkong/config/CorsProperties.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

@ConfigurationProperties(prefix = "cors")
@Component
@Getter
@Setter
@Component
@ConfigurationProperties(prefix = "cors")
public class CorsProperties {

private List<String> origin;
Expand Down

0 comments on commit 4db28cd

Please sign in to comment.