We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c42111 commit 9cc611dCopy full SHA for 9cc611d
crates/next-core/src/next_config.rs
@@ -1507,7 +1507,8 @@ impl NextConfig {
1507
// Temporarily always enable client source maps as tests regress.
1508
// TODO: Respect both `self.experimental.turbopack_source_maps` and
1509
// `self.production_browser_source_maps`
1510
- Ok(Vc::cell(true))
+ let source_maps = self.experimental.turbopack_source_maps;
1511
+ Ok(Vc::cell(source_maps.unwrap_or(true)))
1512
}
1513
1514
#[turbo_tasks::function]
0 commit comments