-
I'm building an app where server = Rust, client = Rust/wasm32.
-
I'm loading the client via "carbo web start --auto-reload" which is nice as it auto recompiles + reloads on source change.
-
Now I need a way to send /api/* requests to a Rust REST handler.
-
My choices seems to be: (1) send all requests to a web server (probably in Rust), send /api to the Rust REST API, and everything else to cargo web (2) send everything to cargo web, and somehow tell cargo web to forward /API requests to Rust REST API.
-
Advice?
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.