The "renderer" folder #664
-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
How do you inject dynamic values into // With VPS you can simply use a string template:
`<title>${someDynamicallyGenerateTitle}</title>` Besides the file names, where do you see the difference between |
Beta Was this translation helpful? Give feedback.
-
Curious about this too. It was a good (although also time-consuming) exercise to try and compare this to the approach here: I ultimately failed at hydration errors and problems with many features of react-router there, so I am happy to be able to use this plugin instead. As long as Vite does not support SSG out of the box, I guess I'll stick with this plugin, minimal idiosyncrasies ignored. Edit: At the same time, SSR and SSG work out of the box, exactly how I wanted them to. TL;DR: Maybe the need for the I'm also wondering if the |
Beta Was this translation helpful? Give feedback.
-
Thank you for the kind words and also for your quick reactions! Dream of a project maintainer 👍 |
Beta Was this translation helpful? Give feedback.
How do you inject dynamic values into
index.html
? Most SSR apps need that.Besides the file names, where do you see the difference between
renderer/_default.page.server.js
/renderer/_default.page.client.js
andentry-server.js
/entry-client.js
?