-
I have a csr based leptos server with an actix web api server. The leptos server is written with wasm and uses trunk serve to run the server. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I am not sure what you mean by "leptos server"? The proxy settings for trunk are for the communication between trunk and the backend. But to my understanding you see an error between the browser and trunk, right? |
Beta Was this translation helpful? Give feedback.
-
I'm sorry I thought you were familiar with the Leptos project. Leptos is a rust webassembly server that I'm using and they use Trunk to serve in the dev environment. |
Beta Was this translation helpful? Give feedback.
I'm sorry I thought you were familiar with the Leptos project. Leptos is a rust webassembly server that I'm using and they use Trunk to serve in the dev environment.
But I found my issue. When my Api server had not yet enabled ssl I was using http://0.0.0.0 and that worked fine. However when I switched to enable ssl that ip was not working and I switched to https://127.0.0.1 and this works. I don't know why.