File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
aics-common/src/main/java/kgu/developers/common/config Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 11package kgu .developers .common .config ;
22
3- import java . util . Arrays ;
4- import java . util . Collections ;
5-
3+ import kgu . developers . common . auth . filter . TokenAuthenticationFilter ;
4+ import kgu . developers . common . auth . jwt . TokenProvider ;
5+ import lombok . RequiredArgsConstructor ;
66import org .springframework .context .annotation .Bean ;
77import org .springframework .context .annotation .Configuration ;
88import org .springframework .security .authentication .AuthenticationManager ;
1919import org .springframework .web .cors .CorsConfiguration ;
2020import org .springframework .web .cors .CorsConfigurationSource ;
2121
22- import kgu .developers .common .auth .filter .TokenAuthenticationFilter ;
23- import kgu .developers .common .auth .jwt .TokenProvider ;
24- import lombok .RequiredArgsConstructor ;
22+ import java .util .Arrays ;
23+ import java .util .Collections ;
2524
2625@ Configuration
2726@ EnableWebSecurity
@@ -105,7 +104,8 @@ CorsConfigurationSource corsConfigurationSource() {
105104 "https://aics-client-dev.vercel.app/" ,
106105 "http://175.45.195.63" ,
107106 "http://203.249.22.207" ,
108- "http://13.125.230.147"
107+ "http://13.125.230.147" ,
108+ "http://52.79.164.36"
109109 ));
110110 config .setAllowCredentials (true );
111111 return config ;
You can’t perform that action at this time.
0 commit comments