fix cors allowed origins????
All checks were successful
Deploy API / deploy (ubuntu-latest, 2.44.0) (push) Successful in 48s

This commit is contained in:
Braydon 2024-09-19 00:20:59 -04:00
parent 37f3ebbd6a
commit 02f9afbcde

@ -9,6 +9,7 @@ import org.springframework.boot.autoconfigure.security.servlet.UserDetailsServic
import org.springframework.context.annotation.Bean;
import org.springframework.http.HttpMethod;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import java.io.File;
@ -21,7 +22,7 @@ import java.util.Objects;
* @author Braydon
*/
@SpringBootApplication(exclude = UserDetailsServiceAutoConfiguration.class)
@Log4j2(topic = "PulseApp")
@Log4j2(topic = "PulseApp") @EnableWebMvc
public class PulseAPI {
@SneakyThrows
public static void main(@NonNull String[] args) {