feat: 统一页面布局与字体样式
This commit is contained in:
@@ -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}`)
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user