DioxusLabs / dioxus

Fullstack GUI library for web, desktop, mobile, and more.
https://dioxuslabs.com
Apache License 2.0
19.37k stars 747 forks source link

Fix streaming server functions, and precompress assets in release mode #2121

Closed ealmloff closed 3 months ago

ealmloff commented 3 months ago

Our compression layer is breaking streaming server functions. This PR removes the default compression layer and instead only compresses static assets in release mode.

~It also adds a more compelling demo for server functions streaming a chat response for an LLM developed for the blog post.~ The demo is a bit dependency heavy for CI, pulled out into a separate repo

Closes #1947