mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
Bumps [env_logger](https://github.com/rust-cli/env_logger) from 0.9.3 to 0.10.0. - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.9.3...v0.10.0) --- updated-dependencies: - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
SSR Router Example
This example is the same as the function router example, but with server-side rendering and hydration support. It reuses the same codebase of the function router example.
How to run this example
- Build Hydration Bundle
trunk build examples/ssr_router/index.html
- Run the server
cargo run --features=ssr --bin ssr_router_server -- --dir examples/ssr_router/dist
- Open Browser
Navigate to http://localhost:8080/ to view results.