You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### What?
Allow to configure nested vs flat async chunking with a new config option.
```
experimental: {
turbopackClientSideNestedAsyncChunking: false,
turbopackServerSideNestedAsyncChunking: true,
}
```
* Enable nested async chunking for client side assets. Defaults to true in build mode and false in dev mode.
418
+
* This optimization computes all possible paths through dynamic imports in the applications to figure out the modules needed at dynamic imports for every path.
419
+
*/
420
+
turbopackClientSideNestedAsyncChunking?: boolean
421
+
422
+
/**
423
+
* Enable nested async chunking for server side assets. Defaults to false in dev and build mode.
424
+
* This optimization computes all possible paths through dynamic imports in the applications to figure out the modules needed at dynamic imports for every path.
425
+
*/
426
+
turbopackServerSideNestedAsyncChunking?: boolean
427
+
416
428
/**
417
429
* Enable filesystem cache for the turbopack dev server.
0 commit comments