Evan Almloff
Evan Almloff
I'm not able to reproduce this issue with either the 0.4 or git version of kalosm on macos with the pdf you linked. Here is the code for my attempt:...
> I assume you hit this error also? No, it parses correctly for me on macos
This issue looks similar to #3235. Can you provide a reproduction of this issue? I'm unable to reproduce this with the following code adapted from the other issue: ```rust //...
Fixed by #4035
I cannot reproduce this with dioxus 0.6.2. There is a chance this is a bug with hot reloading. If it is, the chain of updates you made since the last...
We use our own version of mdbook that expands to rsx macros called [include_mdbook](https://github.com/DioxusLabs/docsite/tree/main/packages/include_mdbook). The format very similar to include mdbook, but I don't know if the original mdbook parser...
If you want slightly smaller bundled sizes, I think you could avoid base 64 encoding everything with custom asset handler (like [this example](https://github.com/DioxusLabs/dioxus/blob/main/examples/video_stream.rs#L23-L35)). Asset handlers let you set the response...
That model is gated on huggingface which means you need to go to the page and request access. Make sure you have done that and you have set the huggingface...
This might be the same issue as https://github.com/DioxusLabs/dioxus/issues/3689 which https://github.com/DioxusLabs/dioxus/pull/3693 fixes. I do get a server bundle at `/target/dx/test/release/web/server` when I bundle desktop with the git version of the CLI,...
> Now, my `server` just serves and supports `web`, while all business logic that requires backend goes through [tarpc](https://crates.io/crates/tarpc) (other people may choose something else). Fullstack is built for both...