1
0
Fork 0
mirror of https://github.com/adoyle0/thaw.git synced 2025-03-14 22:49:49 -04:00
thaw/demo_markdown/docs/_guide/server_sider_rendering.md

14 lines
317 B
Markdown
Raw Normal View History

# Server Sider Rendering
To enable the ssr mode, the following configurations are required:
```toml
thaw = { ..., default-features = false, features = ["ssr"] }
```
To enable the hydrate mode, the following configurations are required:
```toml
thaw = { ..., default-features = false, features = ["hydrate"] }
```