Files
cozsweet-frontend-nextjs/src/router/index.ts
T
admin 9ffa30cc03 style: remove markdown bold syntax from code comments
Remove `**...**` emphasis markers from inline comments and JSDoc blocks across
auth and chat components, machine mappers, and quota helpers. These are
plain code comments, not rendered markdown, so the bold syntax was noise.

Files touched:
- src/app/auth/components/auth-screen.tsx
- src/app/chat/components/chat-header.tsx
- src/app/chat/components/chat-screen.tsx
- chat machine mapper / quota helpers

No functional or behavioral changes.
2026-06-16 14:06:31 +08:00

15 lines
450 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// /
// * Router 公共导出
// *
// * 集中管理:
// * - 路由常量(ROUTES、ROUTE_BUILDERS、AUTH_ONLY_ROUTES、PUBLIC_ROUTES、ALL_STATIC_ROUTES
// * - Next.js 16 ProxyCDN 端鉴权重定向)
// *
// * 业务层导入示例:
// * ```ts
// * import { ROUTES, AUTH_ONLY_ROUTES, type Route } from "@/router";
// * ```
// */
// export * from "./routes";
// export { proxy, config as proxyConfig } from "./proxy";