mirror of
https://github.com/adoyle0/thaw.git
synced 2025-01-24 06:49:21 -05:00
14 lines
317 B
Markdown
14 lines
317 B
Markdown
|
# 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"] }
|
||
|
```
|