Replies: 1 comment 3 replies
-
The CSS will be injected into the head during the server side rendering if you are using dioxus-fullstack or dioxus-static-generation. If you are using just dioxus-web, you can still add css links into your |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We used to load css directly from the head section of
index.html
. Lately, it seems to me that we have to either use manganis orThe problem is that in both of these cases, the css is loads after the wasm binary does. Which is really a problem because you notice the content flash just before the css file loads.
How can we guarantee that the css file will load before the application binary does?
Beta Was this translation helpful? Give feedback.
All reactions