Breaking changes in Rsbuild v0.6.0 #1970
Replies: 3 comments 5 replies
-
Upgrade Rspack v0.6.0Rsbuild v0.6 has upgraded the dependent Please note that Rspack v0.6.0 contains some breaking changes, see https://github.com/web-infra-dev/rspack/releases/tag/v0.6.0 for more details. |
Beta Was this translation helpful? Give feedback.
-
Default server port to 3000The default value of 3000 is is commonly used for web development purposes and is used by create-react-app. Switching the default port can help users avoid port conflicts caused by 8080. |
Beta Was this translation helpful? Give feedback.
-
Enable error overlay by defaultStarting from v0.6, the default value of You can disable it by setting // rsbuild.config.ts
export default defineConfig({
dev: {
client: {
overlay: false,
},
},
}); |
Beta Was this translation helpful? Give feedback.
-
Rsbuild v0.6 will be released alongside Rspack v0.6. It will retain the same minor version number as Rspack.
Beta Was this translation helpful? Give feedback.
All reactions