Skip to content

Commit

Permalink
change port
Browse files Browse the repository at this point in the history
  • Loading branch information
egekorkan committed Oct 9, 2023
1 parent 32d9665 commit 8f25312
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/web-new/server/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/

const express = require('express')
const port = 5000
const port = 5100

const app = express()

Expand All @@ -24,4 +24,4 @@ app.use(express.urlencoded({extended: false}))

app.use('/', express.static('./dist/'))

app.listen(port, () => console.log(`Server started on port ${port}`))
app.listen(port, () => console.log(`Server started on port ${port}`))

0 comments on commit 8f25312

Please sign in to comment.