트러블 슈팅

트러블 슈팅

headers에 location이 안보일 경우 해결 방법

@Configuration public class CorsConfig { @Bean public CorsConfigurationSource corsConfigurationSource() { CorsConfiguration config = new CorsConfiguration(); config.setAllowCredentials(true); config.setAllowedOrigins(List.of("http://localhost:5173")); config.setAllowedMethods(List.of("GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS")); config.setAllowedHeaders(List.of("*")); config.setExposedHe..

키스샷1104
'트러블 슈팅' 카테고리의 글 목록 (2 Page)