collabdocchat 2.5.3 → 2.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/server/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "collabdocchat",
3
- "version": "2.5.3",
3
+ "version": "2.5.4",
4
4
  "description": "开源的实时协作文档聊天平台 - 集成任务管理、多人文档编辑、智能点名功能",
5
5
  "main": "./server/index.js",
6
6
  "type": "module",
package/server/index.js CHANGED
@@ -121,7 +121,7 @@ app.use(notFoundHandler);
121
121
  // 错误处理中间件(必须在所有路由之后)
122
122
  app.use(errorHandler);
123
123
 
124
- const PORT = process.env.PORT || 8765;
124
+ const PORT = process.env.PORT || 3000;
125
125
  server.listen(PORT, () => {
126
126
  console.log(`\n${'='.repeat(60)}`);
127
127
  console.log(`🚀 CollabDocChat 服务器启动成功!`);