Skip to content

Commit 3b2e477

Browse files
committed
chore: update deps
1 parent 9fcf82e commit 3b2e477

2 files changed

Lines changed: 4 additions & 12 deletions

File tree

docs/app/assets/css/devframe.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,7 @@
4141
.dark [data-active].text-highlighted {
4242
color: var(--ui-color-primary-400);
4343
}
44+
45+
.mermaid svg {
46+
width: 100%;
47+
}

docs/content/1.guide/2.rpc.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,6 @@ description: 'Type-safe, bidirectional RPC built on birpc, validated against any
55

66
Type-safe, bidirectional RPC built on [`birpc`](https://github.com/antfu/birpc), validated against any [Standard Schema](https://standardschema.dev/) validator. Dev runs over WebSocket; build/SPA serves a pre-computed static dump.
77

8-
## Overview
9-
10-
```mermaid
11-
sequenceDiagram
12-
participant Client as Browser client
13-
participant Server as Node server
14-
15-
Client->>Server: rpc.call('my-devframe:get-modules')
16-
Note over Server: handler: async () =><br/>readModules()
17-
Server-->>Client: [{ id, size }, …]
18-
```
19-
208
## Defining a function
219

2210
```ts

0 commit comments

Comments
 (0)