Fork me on GitHub
#fulcro
<
2020-03-19
>
tvaughan19:03:44

Does anyone have a link to a complete, working example of server-side rendering? 🙏 I don't quite understand what to do, and all of the examples I run across seem to require Fulcro v2

currentoor20:03:55

i recently implemented serverside rendering in a closed source project with fulcro3

currentoor20:03:07

AFAIK the setup was the same as v2

tvaughan21:03:13

Hmmm, ok. Thanks @U09FEH8GN. I'll take a closer look. Anything I should be aware of? Lessons learned?

currentoor21:03:38

yeah don’t do server side rendering

4
currentoor21:03:42

unless you really need to

currentoor21:03:20

we needed it to build PDF reports quickly on the server by using a library to convert HTML to PDF

👍 4
currentoor21:03:16

IMO it’s a neat parlor trick, but very often there are other feature users want more than super fast load times

Björn Ebbinghaus08:03:06

You start using a js lib like material-components and you can forget your server side rendering... :-(

tvaughan12:03:49

Fantastic! Thanks @U4VT24ZM3!