-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hot reloading and local HTTPS #307
Comments
Just a documentation issue. Here is the relevant code: As you can see it comes from a |
It doesn't affect anything. I am still getting this: |
|
Apologies for the slow response. It looks like this is not being read out of the So either
or let conf = get_configuration(None).await.unwrap();
let mut leptos_options = conf.leptos_options;
leptos_options.reload_ws_protocol = "wss".into(); works when I test it. |
Can confirm, thanks! |
This should take current protocol (http/https) into account. Secure documents cannot call unsecure resources due to browser policies.
A cli argument for a custom WS url won't hurt either. That way we could run
local-ssl-proxy
on a different port.In my development environment I need local HTTPS to integrate with OAuth providers and whatnot.
Right now I am sacrificing hot reloading altogether (being too lazy).
The text was updated successfully, but these errors were encountered: