We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a998c61 commit 35fa107Copy full SHA for 35fa107
turbopack/crates/turbopack-dev-server/src/http.rs
@@ -190,7 +190,7 @@ pub async fn process_request_with_content_source(
190
hyper::header::HeaderValue::try_from(content.len().to_string())?,
191
);
192
193
- response.body(hyper::Body::wrap_stream(content.read()))?
+ response.body(hyper::Body::wrap_stream(ReaderStream::new(content.read())))?
194
};
195
196
return Ok((response, side_effects));
0 commit comments