Skip to content

Commit 518b6b0

Browse files
fix: console logs wrong PUBLIC_PATH
1 parent e0e3950 commit 518b6b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@ app.all("/*", (req, res) => {
5252
app.listen(CLIENT_PORT, () => {
5353
console.log(`App accessible on port ${CLIENT_PORT}`);
5454
console.log(`JSON requests proxied to port ${SERVER_PORT}`);
55-
console.log(`Static files served at :${CLIENT_PORT}/static`);
55+
console.log(`Static files served at :${CLIENT_PORT}${PUBLIC_PATH}`);
5656
});

0 commit comments

Comments
 (0)