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
I've been trying webpack-external-import on a project with MinChunkSizePlugin and it would seem that using MinChunkSizePlugin and URLImportPlugin together may cause issues.
Indeed, if Webpack create only one chunk (because of a large minChunkSize value), I get this error:
Uncaught ReferenceError: installedChunks is not defined
I don't really know how Webpack works but the webpackJsonpCallback function is missing in the non-working version. So I think that Webpack can't load properly the external chunk 🤔
Hope it helps 😉
The text was updated successfully, but these errors were encountered:
Hi 😊
I've been trying
webpack-external-import
on a project withMinChunkSizePlugin
and it would seem that usingMinChunkSizePlugin
andURLImportPlugin
together may cause issues.Indeed, if Webpack create only one chunk (because of a large
minChunkSize
value), I get this error:I don't really know how Webpack works but the
webpackJsonpCallback
function is missing in the non-working version. So I think that Webpack can't load properly the external chunk 🤔Hope it helps 😉
The text was updated successfully, but these errors were encountered: