According to the vue.js docs says:
Vue also supports rendering to a stream, which is preferred for web servers that support streaming. This allows HTML to be written to the response as it’s generated, rather than all at once at the end. The result is requests are served faster, with no downsides!
I see Nuxt is using renderToString
to yield the html string. I'm interested the reason why Nuxt not using renderToStream
?