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