feat: 添加龙虾 favicon 并修复 middleware 路由拦截

- 创建 lib/constants/theme.ts 统一管理颜色和品牌常量
- 重构 icon.tsx 和 apple-icon.tsx 使用共享常量
- 修复 middleware matcher 排除 icon/apple-icon 路由
This commit is contained in:
richarjiang
2026-03-13 20:16:41 +08:00
parent 6c2a45b257
commit c76ebe04e3
5 changed files with 20 additions and 7 deletions

View File

@@ -4,5 +4,5 @@ import { routing } from "./i18n/routing";
export default createMiddleware(routing);
export const config = {
matcher: ["/((?!api|_next|_vercel|.*\\..*).*)"],
matcher: ["/((?!api|_next|_vercel|icon|apple-icon|.*\\..*).*)"],
};