I am trying to develop a web app, for oauth2 debugging I am required to have the web app respond to https, how can this be done developing with Yew?
Currently I am using:
trunk serve --proxy-backend=<backend-endpoint>
In order to serve.
I am trying to develop a web app, for oauth2 debugging I am required to have the web app respond to https, how can this be done developing with Yew?
Currently I am using:
trunk serve --proxy-backend=<backend-endpoint>
In order to serve.
You can use tunnelling through a HTTP tunnel which opens your dev server to the internet and has https. I can recommend you use
Ngrok
but there are way more services out there. Eg:You can combine it with something like
cargo-make
to add a new command.