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.
- package/package.json +1 -1
- package/server/index.js +1 -1
package/package.json
CHANGED
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 ||
|
|
124
|
+
const PORT = process.env.PORT || 3000;
|
|
125
125
|
server.listen(PORT, () => {
|
|
126
126
|
console.log(`\n${'='.repeat(60)}`);
|
|
127
127
|
console.log(`🚀 CollabDocChat 服务器启动成功!`);
|