Skip to content

Commit 4487ac3

Browse files
committed
fix: use 8080 port as mentioned in readme
1 parent e2c33b2 commit 4487ac3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ app.use('/proxy', (req, res, next) => {
144144
}, createProxyMiddleware(corsProxyOptions));
145145

146146
// Start the server with user-friendly logging
147-
const PORT = process.env.PORT || 8082;
147+
const PORT = process.env.PORT || 8080;
148148
app.listen(PORT, () => {
149149
console.log(chalk.green(`Server is running on port ${PORT}`));
150150
});

0 commit comments

Comments
 (0)