Replies: 2 comments 5 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.
-
@ealmloff Why can't dioxus-web with Additionally, I doubt that there exist use cases where current behavior of |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
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