DEV Community

Discussion on: My misadventure with Cloudflare Workers and Vue Serverless Side Rendering

Collapse
 
oguimbal profile image
Olivier Guimbal • Edited

The 50ms limit is only counting actual CPU time. You can wait requests taking as much time as you wish, the waiting time will not be taken into account in the 50ms timeout.

Moreover, having bundles that weight more than a MB for something that requires SSR looks like a codesmell to me. But that's a matter of opinion ☺️

Collapse
 
divporter profile image
David Porter

Possibly, in my experience it doesn't take much effort to blow out React and Vue apps. When I have time I'll see if I can trim my app down which will be a useful exercise regardless.