1👍
✅
Dynamically load modules. Calls to import() are treated as split points, meaning the requested module and its children are split out into a separate chunk.
By adding comments to the import, we can do things such as name our chunk or select different modes.
Example
import(
/* webpackChunkName: "my-chunk-name" */
/* webpackMode: "lazy" */
'module'
);
Source:stackexchange.com