Skip to content

Commit f75aa92

Browse files
committed
fixed port error
1 parent 253cc20 commit f75aa92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shatter-backend/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ async function start() {
1616

1717
// start listening for incoming HTTP requests on chosen port
1818
app.listen(PORT, () => {
19-
console.log('Server running on http://localhost:${PORT}');
19+
console.log(`Server running on http://localhost:${PORT}`);
2020
});
2121
} catch (err) {
2222
console.error('Failed to start server:', err);

0 commit comments

Comments
 (0)