This commit is contained in:
2026-01-08 02:57:53 -03:00
parent 134698e7ab
commit f7c9050e38
3 changed files with 334 additions and 1 deletions

View File

@@ -87,7 +87,7 @@ app.get("/:name", (req, res) => {
});
});
app.listen(PORT, () => {
app.listen(PORT, "0.0.0.0", () => {
console.log(`Listening on :${PORT}`);
});