zhizhijie
14 小时以前 fbc1c1590e7e81a550beb50c7cf65c663c7c5b41
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();
    }