dependabot[bot] 8387af4fe2
Bump env_logger from 0.9.3 to 0.10.0 (#3155)
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>
2023-03-17 21:01:21 +09:00
..
2023-02-01 21:57:05 +05:00

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

  1. Build Hydration Bundle

trunk build examples/ssr_router/index.html

  1. Run the server

cargo run --features=ssr --bin ssr_router_server -- --dir examples/ssr_router/dist

  1. Open Browser

Navigate to http://localhost:8080/ to view results.