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
output.sourceMap.css: true
System: OS: macOS 14.6.1 CPU: (10) arm64 Apple M1 Max Memory: 701.70 MB / 64.00 GB Shell: 5.9 - /bin/zsh Browsers: Chrome: 131.0.6778.265 Safari: 17.6 npmPackages: @rsbuild/core: ^1.1.8 => 1.1.13 @rsbuild/plugin-react: ^1.0.7 => 1.1.0
output.sourceMap.css: true does not take effect when output.sourceMap.js: false.
output.sourceMap.js: false
When I configure output.sourceMap.js with values like cheap-source-map, it works well.
output.sourceMap.js
cheap-source-map
basic react demo
npm create rsbuild@latest
import { defineConfig } from "@rsbuild/core"; import { pluginReact } from "@rsbuild/plugin-react"; export default defineConfig({ + output: { + sourceMap: { + css: true, + }, + }, plugins: [pluginReact()], });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version
Details
output.sourceMap.css: true
does not take effect whenoutput.sourceMap.js: false
.When I configure
output.sourceMap.js
with values likecheap-source-map
, it works well.Reproduce link
basic react demo
Reproduce Steps
npm create rsbuild@latest
The text was updated successfully, but these errors were encountered: