diff --git a/api/src/index.ts b/api/src/index.ts index a6a1c01be656f2e773937a9cf295852547613d83..cc2068c13a890996d12f7721e5186f03934fc1ff 100644 --- a/api/src/index.ts +++ b/api/src/index.ts @@ -21,6 +21,6 @@ api.use('/orders', orderRouter); api.use('/staff', staffRouter); api.use('/adresses', adressRouter); -api.listen(port, () => { +api.listen(port, '0.0.0.0', () => { console.log(`Server is running at https://localhost:${port}`); });