Is your feature request related to a problem? Please describe.
Tauri supports CLI, but we don't have a way to pass any arguments to the CLI when using yarn tauri dev.
Describe the solution you'd like
Support some way of passing in arguments, something like yarn tauri dev <arg1> <arg2> ...
Describe alternatives you've considered
Tried using the solution I mentioned above (yarn tauri dev <arg1> <arg2> ...) and it didn't work. I also tried just using cargo run <arg1> <arg2>..., which will pass in the arguments, but this is not workable because we need the wrapper provided by yarn tauri dev. So there's not really a feasible workaround for this.
Additional context
None