Skip to content

Commit

Permalink
Merge pull request #83 from Team-Daengnyang/fix/#82
Browse files Browse the repository at this point in the history
[FEAT] cors 에러 해결
  • Loading branch information
csb9427 authored Aug 27, 2024
2 parents 51bd571 + 82de384 commit d61322f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/main/java/com/fav/daengnyang/global/config/WebmvcConfig.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package com.fav.daengnyang.global.config;

import lombok.RequiredArgsConstructor;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

@Configuration
@RequiredArgsConstructor
public class WebmvcConfig implements WebMvcConfigurer {

@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("*")
.allowedMethods("GET", "POST", "PUT", "PATCH","DELETE", "OPTIONS")
.allowedHeaders("*")
.maxAge(3000);
}
}

0 comments on commit d61322f

Please sign in to comment.