Dev server not starting with react plugin #2837
Answered
by
9aoy
iamravisingh
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
9aoy
Jul 8, 2024
Replies: 1 comment 1 reply
-
Hey, according to the error message you provided, I suspect that you have installed an unexpected version of rsbuild (rsbuild 1.0.0 is a deprecated version 😭 ), maybe you should lock rsbuild to npmPackages:
- @rsbuild/core: ^1.0.0-alpha.5
- @rsbuild/plugin-eslint: ^1.0.0
- @rsbuild/plugin-react: ^1.0.0-alpha.5
- @rsbuild/plugin-sass: ^1.0.0-alpha.5
+ @rsbuild/core: 1.0.0-alpha.5
+ @rsbuild/plugin-eslint: 1.0.0-alpha.5
+ @rsbuild/plugin-react: 1.0.0-alpha.5
+ @rsbuild/plugin-sass: 1.0.0-alpha.5 |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
iamravisingh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey, according to the error message you provided, I suspect that you have installed an unexpected version of rsbuild (rsbuild 1.0.0 is a deprecated version 😭 ), maybe you should lock rsbuild to
1.0.0-alpha.5
.