Closed
Description
In the DevTools extension, webpack currently uses an automatically assigned ID as the chunk name for dynamically imported modules (ie. parseHookNames
and associated code will get bundled into 6.js
).
We've tried adding chunkFilename: '[name].js'
to output
in webpack.config.js
and magic comments (ie./* webpackChunkName: "parseHookNames" */
) to the dynamic import to fix, but neither works.