Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Website/docs/Remoting.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ type MyService =
member this.BasePath = "/myService"
```

Remote calls are `POST` requests to the function's URL. Arguments and return values are automatically serialized to JSON.
Remote calls are `POST` requests to the function's URL. Arguments and return values are automatically serialized to JSON via `System.Text.Json`. Since it has trouble with F# types like `list`, consider configuring it with [FSharp.SystemTextJson](https://github.com/Tarmil/FSharp.SystemTextJson/blob/master/docs/Using.md#using-with-bolero).

### Calling on the client side

Expand Down