fix:change the default back-end port

This commit is contained in:
jiangrui
2024-12-17 14:20:05 +08:00
parent 16dfa1500d
commit 89caf91688

View File

@@ -22,7 +22,7 @@ app.use("/", routes);
// 错误处理
app.use(errorHandler);
const PORT = process.env.PORT || 3000;
const PORT = process.env.PORT || 8009;
app.listen(PORT, () => {
console.log(`Server is running on port ${PORT}`);
});