You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to just prerender the document instead of letting the client wait to receive it's initial state via WebSockets.
Code Sample
constserver=http.createServer((request,response)=>{if(request.url==='/'){compilerCli.documents('/',{ state },(error,node)=>{response.setHeader('content-type','text/html')gzip(node.buffer,request,response)})}compilerHtml(request,response,function(){response.statusCode=404response.end('not found')})})
Your Environment
Software
Version(s)
Choo
6.13.3
The text was updated successfully, but these errors were encountered:
This a 🐛 bug report.
.documents
is not accepting an object as second parameter even though it's documented in the README.Expected Behavior
Current Behavior
Possible Solution
Maybe build on #446?
Context
I would like to just prerender the document instead of letting the client wait to receive it's initial state via WebSockets.
Code Sample
Your Environment
The text was updated successfully, but these errors were encountered: