This commit is contained in:
eric
2026-03-15 04:25:45 -05:00
parent df12c7af4a
commit bbaa38b3b3
32 changed files with 4312 additions and 152 deletions

View File

@@ -0,0 +1,12 @@
/**
* 私密社群配置
* 参考 memos 风格,组件化/模块化
*/
export const COMMUNITY_CONFIG = {
/** 是否启用社群功能 */
enabled: process.env.NEXT_PUBLIC_COMMUNITY_ENABLED !== "false",
/** 每页条数 */
pageSize: 20,
/** 最大内容长度 */
maxContentLength: 10000,
} as const;