Skip to content

Commit 7c4799a

Browse files
committed
fixup comment in css
1 parent 90896c9 commit 7c4799a

File tree

2 files changed

+2
-2
lines changed
  • turbopack/crates/turbopack-css/src/chunk

2 files changed

+2
-2
lines changed

turbopack/crates/turbopack-css/src/chunk/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ impl CssChunk {
132132
let source_map_path = CssChunkSourceMapAsset::new(self).path().await?;
133133
write!(
134134
rope_builder,
135-
"\n\n//# sourceMappingURL={}",
135+
"/*# sourceMappingURL={}*/",
136136
urlencoding::encode(source_map_path.file_name())
137137
)?;
138138
rope_builder.build()

turbopack/crates/turbopack-css/src/chunk/single_item_chunk/chunk.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ impl Asset for SingleItemCssChunk {
136136
let source_map_path = SingleItemCssChunkSourceMapAsset::new(self).path().await?;
137137
write!(
138138
rope_builder,
139-
"\n\n//# sourceMappingURL={}",
139+
"\n/*# sourceMappingURL={}*/",
140140
urlencoding::encode(source_map_path.file_name())
141141
)?;
142142
rope_builder.build()

0 commit comments

Comments
 (0)