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 bc17682 commit dbc7de2Copy full SHA for dbc7de2
turbopack/crates/turbopack-dev-server/src/http.rs
@@ -176,7 +176,7 @@ pub async fn process_request_with_content_source(
176
177
let content = file.content();
178
// We already have all the bytes in memory
179
- let content = content.to_bytes()?.into_owned();
+ let content = content.to_bytes().into_owned();
180
let response = if should_compress {
181
header_map.insert(CONTENT_ENCODING, HeaderValue::from_static("gzip"));
182
0 commit comments