Browse Source

Update Getting-Started-React-Native.md

pull/15074/head
Mahmut Gundogdu 3 years ago
parent
commit
d8f630389c
  1. 10
      docs/en/Getting-Started-React-Native.md

10
docs/en/Getting-Started-React-Native.md

@ -80,11 +80,11 @@ Run the backend application as described in the [getting started document](Getti
Go to MyProjectNameHttpApiHostModule.cs under the host project. Add these codes under `PreConfigureServices` function.
```csharp
#ifDEBUG
PreConfigure<OpenIddictServerBuilder>(options => {
options.UseAspNetCore()
.DisableTransportSecurityRequirement();
});
#if DEBUG
PreConfigure<OpenIddictServerBuilder>(options => {
options.UseAspNetCore()
.DisableTransportSecurityRequirement();
});
#endif
```

Loading…
Cancel
Save