We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73797f3 commit cd9539cCopy full SHA for cd9539c
turbopack/crates/turbopack-core/src/chunk/chunking/dev.rs
@@ -86,6 +86,8 @@ pub async fn app_vendors_split<'l>(
86
let mut chunk_group_specific_chunk_items = Vec::new();
87
let mut app_chunk_items = Vec::new();
88
let mut vendors_chunk_items = Vec::new();
89
+ // TODO this needs to create new chunk groups for each async entry point to preserver `import()`
90
+ // semantics, even if it leads to more chunks.
91
for item in chunk_items {
92
let ChunkItemOrBatchWithInfo::ChunkItem {
93
chunk_item: ChunkItemWithAsyncModuleInfo { module, .. },
0 commit comments