Skip to content

Commit

Permalink
[BE] hotfix: 배포 후 웹소켓 연결 안 되는 문제 해결 (#277)
Browse files Browse the repository at this point in the history
  • Loading branch information
takoyakimchi authored and ehtjsv2 committed Aug 2, 2024
1 parent 2dad935 commit 52cc7fc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ public void configureMessageBroker(MessageBrokerRegistry registry) {

@Override
public void registerStompEndpoints(StompEndpointRegistry registry) {
registry.addEndpoint("/connect");
registry.addEndpoint("/connect")
.setAllowedOrigins("*");
}

@Override
Expand Down

0 comments on commit 52cc7fc

Please sign in to comment.