使用rsbuild 跑dev环境时,报了个错
Uncaught Error: Problem communicating active modules to the server at eval (node_modules\.pnpm\@rspack+core@1.6.7_@swc+helpers@0.5.17\node_modules\@rspack\core\hot\lazy-compilation-web.js?%2Flazy-compilation-using-:29:0)

image.png
并且对应的页面也白屏

image.png
解决
把 lazyCompilation关闭即可
在rsbuild.config.ts中
export default defineConfig({
...其他配置
dev: {
lazyCompilation: false
}
})
lazyCompilation这个配置应该是默认开启了,需要手动关闭下