lichu acuña
lichu acuña
Fixed typo in "Mint a New Position" page.
### What? Moves resolveExtensions up from experimental.turbo to experimental in next.config.js. Makes Webpack configuration also read from that field. Closes PACK-2578
Adds a `experimental.turbo.moduleIdStrategy` field to `next.config.js` to configure what module ID generation strategy to use. `'named'` assigns readable module IDs based on the module's path and functionality. `'deterministic'` assigns small...
`DevModuleIdStrategy` becomes `NamedModuleIdStrategy` and `GlobalModuleIdStrategy` becomes `DeterministicModuleIdStrategy`. This is to match the fields in `experimental.turbo.moduleIdStrategy`.
### Description Module ID global optimization is implemented, making use of the `GlobalInformation` struct. IDs become bigger as collisions appear. ### Testing Instructions
### Description A `GlobalInformation` struct is added, which is made available through the `ChunkingContext` trait. Constructing a new `GlobalInformation` takes a `Project` parameter, which gives the constructor access to global...