Replies: 1 comment 1 reply
-
Hi, you can try this: npx rsbuild build --mode development |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
One thing that I like for my CI process is a quick development build as a sanity check to ensure my projects build. A full build with
rsbuild build
takes a long time, a lot of time is spent on optimizations from wasm modules and minifying. Starting a dev server is fairly quick.Basically, all I would like to do is only run the build portion of a dev sever, but not actually start a dev server in my CI. Poking around I have not seen that to be possible though.
rsbuild dev
seems to unconditionally start a server. I do not see options for makingrsbuild build
run with lowest optimization settings. Can someone help me verify if what I'm seeing if correct, or if I'm missing something?Beta Was this translation helpful? Give feedback.
All reactions