NuxtJS deploy timing out

1 Like

Are you listening on 0.0.0.0 in your app server?

1 Like

Hey @anurag - looks like that was it. Putting in a:

server: {
  port: 10000,
  host: process.env.NODE_ENV === 'production' ? '0.0.0.0' : 'localhost'
} 

block into my nuxt.config.js file got things up and running.

Thanks for your help!

2 Likes