bripkens / connect-history-api-fallback

Fallback to index.html for applications that are using the HTML 5 history API
MIT License
1.83k stars 143 forks source link

Fix issue with variable name #69

Closed insanity54 closed 5 years ago

insanity54 commented 5 years ago
console.log(`Example app listening on port ${5555}!`);

should be

console.log(`Example app listening on port ${port}!`);
bripkens commented 5 years ago

Thank you!