Cannot expose more than one port

Hello,

You’re almost there. What’s missing is that you need to serve your frontend with a fallback request handler from your express app. Try adding this after all your backend routes:

app.use(express.static('public'))

Hope it helps!

1 Like