We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cb017d commit d0ce651Copy full SHA for d0ce651
turbopack/crates/turbopack-browser/src/ecmascript/content.rs
@@ -109,8 +109,7 @@ impl EcmascriptBrowserChunkContent {
109
code,
110
// `||=` would be better but we need to be es2020 compatible
111
//`x || (x = default)` is better than `x = x || default` simply because we avoid _writing_ the property in the common case.
112
- "(globalThis[\"{chunk_loading_global}\"] || (globalThis[\"{chunk_loading_global}\"] = \
113
- [])).push([{script_or_path},"
+ r#"(globalThis["{chunk_loading_global}"] || (globalThis["{chunk_loading_global}"] = [])).push([{script_or_path},"#
114
)?;
115
116
let content = this.content.await?;
0 commit comments