traffic-audit-server/src/main/java/com/trafficaudit/security/config/SecurityConfig.java
@@ -26,6 +26,7 @@ .and() .authorizeRequests() .antMatchers("/api/**").permitAll() .antMatchers("/", "/index.html", "/js/**", "/css/**", "/fonts/**", "/img/**", "/favicon.ico").permitAll() .anyRequest().authenticated(); return http.build(); }