Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 변경된 dev 서버 도메인으로 변경 #461

Closed
wants to merge 9 commits into from
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
import java.util.Arrays;
import java.util.stream.Stream;

import lombok.RequiredArgsConstructor;

import org.sopt.makers.crew.main.global.jwt.JwtAuthenticationEntryPoint;
import org.sopt.makers.crew.main.global.jwt.JwtAuthenticationFilter;
import org.sopt.makers.crew.main.global.jwt.JwtTokenProvider;
Expand All @@ -23,6 +21,8 @@
import org.springframework.web.cors.CorsConfigurationSource;
import org.springframework.web.cors.UrlBasedCorsConfigurationSource;

import lombok.RequiredArgsConstructor;

@Configuration
@RequiredArgsConstructor
@EnableWebSecurity
Expand Down Expand Up @@ -91,7 +91,7 @@ CorsConfigurationSource corsConfigurationSource() {
"https://playground.sopt.org/",
"http://localhost:3000/",
"https://sopt-internal-dev.pages.dev/",
"https://crew.api.dev.sopt.org",
"https://crew.api.develop.sopt.org",
"https://crew.api.prod.sopt.org"
));
configuration.setAllowedMethods(Arrays.asList("GET", "POST", "PATCH", "DELETE", "PUT", "OPTIONS"));
Expand Down
Loading