Evan Almloff
Evan Almloff
We don't guarantee this behavior, but I think this should be handled by [light_diff_template](https://github.com/DioxusLabs/dioxus/blob/c9ab09b3480ba2ad3b77d16c5e86382a62258194/packages/core/src/diff/node.rs#L449-L486). That code doesn't seem to be working correctly
There are cases where treating svgs as images is nice. Images contain options for low quality image previews which would be nice to support for svgs as well with something...
You could set your rust flags for a specific platform with `target..rustflags` in your .cargo/config.toml ([docs](https://doc.rust-lang.org/cargo/reference/config.html#targettriplerustflags))
If your project looks like: ``` - project - dist - server.exe - other-files... ``` You can move your server up from `dist` to `project` and run it to avoid...
This is an issue we were facing with [dioxus](https://github.com/DioxusLabs/dioxus). We are working on developing a library called [Manganis](https://github.com/DioxusLabs/collect-assets) that supports collecting and optimizing assets across dependancies. We are using it...
> I think that describes a bunch of ideas :) … What exactly do you propose? It implements something similar to option 0 in the original comment. You can link...
> so that would be part of the frontend code and compile when trunk would call `cargo build`, right? Yes, manganis could be in the main package you are building...
Thanks for your work on Railwind. It has been great to work with so far. For dioxus support, we added a railwind-based `class!` macro to [Manganis](https://github.com/DioxusLabs/collect-assets) which will collect all...
> Noticed there's a possible hiccup with this when running some examples. > > My terminal gets littered with these - exploring options now: > > ``` > warning: /Users/ajt/projects/tmp/dioxus/packages/dioxus-tui/Cargo.toml:...
> The only fix I've found is the following in the package cargo.toml files. > > ```diff > + dioxus = { path = "../dioxus", version = "0.4" } >...