github withastro/astro @astrojs/react@4.2.0

latest releases: astro@5.2.1, astro@5.2.0, @astrojs/markdown-remark@6.1.0...
3 days ago

Minor Changes

  • #13036 3c90d8f Thanks @artmsilva! - Adds experimental support for disabling streaming

    This is useful to support libraries that are not compatible with streaming such as some CSS-in-JS libraries. To disable streaming for all React components in your project, set experimentalDisableStreaming: true as a configuration option for @astrojs/react:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import react from '@astrojs/react';
    
    export default defineConfig({
      integrations: [
        react({
    +      experimentalDisableStreaming: true,
        }),
      ],
    });

Don't miss a new astro release

NewReleases is sending notifications on new releases.