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
4 changes: 2 additions & 2 deletions src/Website/docs/Remoting.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,11 @@ Here is how to implement a remote service without any dependencies.

member this.Configure(app: IApplicationBuilder) =
app.UseRemoting()
.UseBlazor<Client.Startup>()
.UseClientSideBlazorFiles<Client.Startup>()
|> ignore
```

Note that `UseRemoting` (and any other middleware) must be called *before* `UseBlazor`, because `UseBlazor` unconditionally catches all requests.
Note that `UseRemoting` (and any other middleware) must be called *before* `UseClientSideBlazorFiles`, because `UseClientSideBlazorFiles` unconditionally catches all requests.

#### Using dependency injection

Expand Down