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
{{ message }}
This repository has been archived by the owner on Feb 1, 2021. It is now read-only.
I just added production source maps to our webpack build and started getting an error that the request entity is too large. I noticed that this lib is sending every file that webpack processes to the server. I'm guessing that the source map files are being sent over too which causes this error to occur.
I'm not sure how other people are using this lib but I really only care about the files that have budgets and I don't really need info on the other files.
Maybe there could be some sort of filter or ignore list that we could specify in the plugin options. Something like
new BundleAnalyzerPlugin({
token: '<repository-token>',
ignore: ['*.js.map', '*.{jpg,png}']
})
The text was updated successfully, but these errors were encountered:
I just added production source maps to our webpack build and started getting an error that the request entity is too large. I noticed that this lib is sending every file that webpack processes to the server. I'm guessing that the source map files are being sent over too which causes this error to occur.
I'm not sure how other people are using this lib but I really only care about the files that have budgets and I don't really need info on the other files.
Maybe there could be some sort of filter or ignore list that we could specify in the plugin options. Something like
The text was updated successfully, but these errors were encountered: