@@ -29,7 +29,17 @@ public class SaTokenConfig implements WebMvcConfigurer {
.addPathPatterns("/**")
.excludePathPatterns(
"/login/**", // 登录接口
- "/health/**" // 健康检查接口
+ "/health/**", // 健康检查接口
+ "/static/**", // 静态资源
+ "/favicon.ico", // 网站图标
+ "/logo.svg", // logo
+ "/platform-config.json", // 平台配置
+ "/index.html", // 首页
+ "/*.js", // JS文件
+ "/*.css", // CSS文件
+ "/audio/**", // 音频资源
+ "/html/**", // HTML资源
+ "/wasm/**" // WASM资源
);
}