-
-
Notifications
You must be signed in to change notification settings - Fork 488
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Report page shows nothing but slide bar #244
Comments
Same issue, one caveat is that I'm using ESM |
I also ran into this and did some debugging. In my case, it was happening because we were gzipping our assets (with The bundle analyzer removes all non- webpack-bundle-analyzer/src/analyzer.js Lines 33 to 40 in a99fc91
As a workaround, I disable our gzipping when analyzing the bundle. I don't think this is an issue with @samkelleher — That was fixed 6 days ago in #252. |
Thanks for providing the stats.json @s524797336. The critical parts look like this: {
"assets": [
],
"children": [
{
"assets": [
{
"name": "__child-HtmlWebpackPlugin_0",
"size": 711481,
"chunks": [
0
],
"chunkNames": [
"HtmlWebpackPlugin_0"
],
"emitted": false
}
]
}
]
} Because I don't know what causes the name to not have a |
If i stop using gzip, this works fine, so i don't think this is what happened. |
I had the same issue. After quite some time I found out, that someone set See https://webpack.js.org/configuration/stats/. Using |
anyone figured out a solution yet? sucks that it doesn't analyze gzipped bundles |
webpack-bundle-analyzer does support gzip. Please open a new issue to describe your situation in more detail @RedVelocity |
Oh yeah, true, if you compress assets, turning output to gzip files, that indeed doesn't work. A new issue specifically about that feature missing would be helpful if anyone's willing to write up such an issue as a feature request EDIT: Here's the new issue written by @RedVelocity 💞 #377 |
Issue description
Show empty page
Console show "No bundles were parsed. Analyzer will show only original module sizes from stats file"
Browser console show nothing
Technical info
Debug info
I use this as plugin
Here is stats file stats.json.zip
The text was updated successfully, but these errors were encountered: