Evan Almloff
Evan Almloff
> From what I remember this might have issues with LTO since the static won't escape the module. Only extern "C" symbols make it out if they're private, but that...
> @ealmloff got some very bad news in this situation. Idk that it possible to force __LINK_SECTION static to persist in `dx bundle --release` in a desirable way > >...
Dioxus rsx is similar to rust structs, if you have a plain ident with the name of an attribute, then it set the attribute (like `Foo { bar }` sets...
Can you share a reproduction for this issue? I cannot reproduce the issue with this code: https://github.com/ealmloff/fail-repro-4117
Link should be fixed. My git token expired
Server functions run in two different places: 1) If server functions are called during the initial server-side render or during streaming, they are called like a normal async function with...
> Does this mean that custom middleware like the following will only work for manually registered methods, but not for methods automatically registered through #[server]? > > let router =...
This PR works when serving with the version of the CLI in https://github.com/DioxusLabs/dioxus/pull/4111. Unforunately both serving SSG and bundling are currently broken in the git and alpha version of the...
> Will this affect #3832? No, this is still a server-only datatype. That issue should already be fixed in 0.7 with the new server fn release. You can now return...
It looks like this is a more general issue than just the error boundary component. Context is not provided to event handlers in inline children correctly in any component. This...