Skip to content

Commit e465c50

Browse files
committed
hardcode it to true! for testing
1 parent 4cc56fd commit e465c50

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

crates/next-core/src/next_config.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1843,10 +1843,7 @@ impl NextConfig {
18431843
#[turbo_tasks::function]
18441844
pub async fn turbo_use_whole_app_module_graph(&self, mode: Vc<NextMode>) -> Result<Vc<bool>> {
18451845
Ok(Vc::cell(match *mode.await? {
1846-
NextMode::Development => self
1847-
.experimental
1848-
.turbopack_use_whole_app_module_graph_in_dev
1849-
.unwrap_or(false),
1846+
NextMode::Development => true,
18501847
NextMode::Build => true,
18511848
}))
18521849
}

0 commit comments

Comments
 (0)