更换端口

This commit is contained in:
董海洋
2026-05-24 10:49:45 +08:00
parent 49fcbf0df8
commit d105f7471b
3 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ router.use('/api/ai', aiRoutes)
app.use(router.routes())
app.use(router.allowedMethods())
const PORT = process.env.PORT || 3005
const PORT = process.env.PORT || 3006
app.listen(PORT, () => {
console.log(`Server running on port ${PORT}`)
})