feat: 统一页面布局与字体样式

This commit is contained in:
selfrelease
2026-07-24 17:30:36 +08:00
parent 4ae24990a7
commit a28b065ab8
25 changed files with 2032 additions and 259 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
import app from './app'
const PORT = process.env.PORT || 3000
const PORT = Number(process.env.PORT) || 3000
app.listen(PORT, () => {
console.log(`Server running on http://localhost:${PORT}`)
app.listen(PORT, '::', () => {
console.log(`Server running on http://[::]:${PORT}`)
})