I’m using remix with vite with the host and port set in vite’s config
server: {
port: 3000,
host: "0.0.0.0",
},
but I keep getting these errors about it not being available instance refused connection. is your app listening on 0.0.0.0:3000
.
Any insights on why this might be happening? I have all the internal port settings set properly, I am exposing the port in docker, and I’m able to get the client code in my browser but the prisma backend seems to be broken.
I built the production app locally and started it, the site is available on 0.0.0.0:3000 and the db works.