astrobot-houston
released this
18 Jul 21:32
·
793 commits
to main
since this release
Patch Changes
-
#11486
9c0c849
Thanks @ematipico! - Adds a new function calledaddClientRenderer
to the Container API.This function should be used when rendering components using the
client:*
directives. TheaddClientRenderer
API must be used
after the use of theaddServerRenderer
:const container = await experimental_AstroContainer.create(); container.addServerRenderer({ renderer }); container.addClientRenderer({ name: '@astrojs/react', entrypoint: '@astrojs/react/client.js' }); const response = await container.renderToResponse(Component);
-
#11500
4e142d3
Thanks @Princesseuh! - Fixes inferRemoteSize type not working -
#11496
53ccd20
Thanks @alfawal! - Hide the dev toolbar onwindow.print()
(CTRL + P)