Releases: frandiox/vite-ssr
Releases · frandiox/vite-ssr
0.4.1
0.4.0
0.3.1
0.3.0
- Local SSR dev-server with
vite-ssr dev
🎉 - Renderer now returns the building parts (
body
,head
,bodyAttrs
andhtmlAttrs
) aside from the currenthtml
(which assembles everything). initialState
is now available in the main Vue hook during SSR in order to ease integration with Vuex orserverPrefect
calls.- Breaking: Renderer API has changed from
render({ request, ... })
torender(url, { ... })
. Vite SSR doesn't need therequest
object, just the URL. You can still pass the request in the options if you need access to it from your app code.