25 lines
937 B
Java
25 lines
937 B
Java
package com.hlab.yanalyst.global.config;
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.web.servlet.config.annotation.CorsRegistry;
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
|
|
|
@Configuration
|
|
public class WebMvcConfig implements WebMvcConfigurer {
|
|
|
|
@Override
|
|
public void addCorsMappings(CorsRegistry registry) {
|
|
registry.addMapping("/**")
|
|
.allowedOriginPatterns("*") // Allow all origins including h-lab.tolag.shop
|
|
.allowedMethods("GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS")
|
|
.allowedHeaders("*")
|
|
.allowCredentials(true);
|
|
}
|
|
|
|
@Override
|
|
public void addResourceHandlers(org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry registry) {
|
|
registry.addResourceHandler("/**")
|
|
.addResourceLocations("classpath:/static/");
|
|
}
|
|
}
|