Skip to content

Commit cbd7c48

Browse files
committed
Turbopack: fix output directory for postcss/webpack loaders entrypoint
1 parent 6a017d7 commit cbd7c48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/next-api/src/project.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -815,9 +815,9 @@ impl Project {
815815
let node_execution_chunking_context = Vc::upcast(
816816
NodeJsChunkingContext::builder(
817817
self.project_root_path().owned().await?,
818-
node_root.clone(),
818+
node_root.join("build")?,
819819
self.node_root_to_root_path().owned().await?,
820-
node_root.clone(),
820+
node_root.join("build")?,
821821
node_root.join("build/chunks")?,
822822
node_root.join("build/assets")?,
823823
node_build_environment().to_resolved().await?,

0 commit comments

Comments
 (0)