Skip to content
Snippets Groups Projects

Backend frontend sync

Merged Torbjørn Antonsen requested to merge backend-frontend-sync into main
7 files
+ 24
8
Compare changes
  • Side-by-side
  • Inline
Files
7
package edu.ntnu.idatt2105.configuration;
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 CorsConfig implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("http://localhost:4173")
.allowedMethods("GET", "POST", "PUT", "DELETE")
.allowedHeaders("*");
}
}
Loading