aboutsummaryrefslogtreecommitdiff
path: root/.changeset/three-steaks-exist.md
diff options
context:
space:
mode:
Diffstat (limited to '.changeset/three-steaks-exist.md')
-rw-r--r--.changeset/three-steaks-exist.md21
1 files changed, 0 insertions, 21 deletions
diff --git a/.changeset/three-steaks-exist.md b/.changeset/three-steaks-exist.md
deleted file mode 100644
index a42092410..000000000
--- a/.changeset/three-steaks-exist.md
+++ /dev/null
@@ -1,21 +0,0 @@
----
-"@astrojs/react": minor
----
-
-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`:
-
-```diff
-// astro.config.mjs
-import { defineConfig } from 'astro/config';
-import react from '@astrojs/react';
-
-export default defineConfig({
- integrations: [
- react({
-+ experimentalDisableStreaming: true,
- }),
- ],
-});
-```