We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
System: OS: macOS 15.0.1 CPU: (8) arm64 Apple M1 Pro Memory: 1.84 GB / 32.00 GB Shell: 5.9 - /bin/zsh Browsers: Brave Browser: 128.1.69.168 Chrome: 130.0.6723.92 Safari: 18.0.1 Safari Technology Preview: 18.0 npmPackages: @rsdoctor/rspack-plugin: ^0.4.8 => 0.4.8
I came across that RsDoctor does not show the number of JS and CSS files, and brakes the stats with the following rspack config:
output: { filename: '[name].js?v=[contenthash]', chunkFilename: '[name].js?v=[contenthash]', ..., }, plugins: [ new rspack.CssExtractRspackPlugin({ filename: '[name].css?v=[contenthash]', chunkFilename: 'styles.[name].css?v=[contenthash]', }), ..., ]
Result:
But if i use:
output: { filename: '[name].[contenthash].js', chunkFilename: '[name].[contenthash].js', ..., }, plugins: [ new rspack.CssExtractRspackPlugin({ filename: '[name].[contenthash].css', chunkFilename: 'styles.[contenthash].[name].css', }), ..., ]
Result OK:
.
The text was updated successfully, but these errors were encountered:
Got this issue, I'll reappear this scene and solve it.
Sorry, something went wrong.
easy1090
No branches or pull requests
Version
System:
OS: macOS 15.0.1
CPU: (8) arm64 Apple M1 Pro
Memory: 1.84 GB / 32.00 GB
Shell: 5.9 - /bin/zsh
Browsers:
Brave Browser: 128.1.69.168
Chrome: 130.0.6723.92
Safari: 18.0.1
Safari Technology Preview: 18.0
npmPackages:
@rsdoctor/rspack-plugin: ^0.4.8 => 0.4.8
Details
I came across that RsDoctor does not show the number of JS and CSS files, and brakes the stats with the following rspack config:
Result:
But if i use:
Result OK:
Reproduce link
.
Reproduce Steps
.
The text was updated successfully, but these errors were encountered: