diff --git a/server/index.js b/server/index.js index 528c95e..8998c9d 100644 --- a/server/index.js +++ b/server/index.js @@ -13,7 +13,7 @@ const port = process.env.PORT || 5000 const start = async () => { try { - await fastify.listen(port) + await fastify.listen(port, '0.0.0.0') console.log(`Launched on port ${port} 🚀`) } catch (err) { fastify.log.error(err)