Browse Source

fix: ract native overview document

pull/23834/head
sumeyye 8 months ago
parent
commit
f99cd7eafe
  1. 9
      docs/en/docs-params.json
  2. 9
      docs/en/framework/ui/react-native/index.md

9
docs/en/docs-params.json

@ -27,6 +27,15 @@
"No": "Not Tiered", "No": "Not Tiered",
"Yes": "Tiered" "Yes": "Tiered"
} }
},
{
"name": "Architecture",
"displayName": "Architecture",
"values": {
"Monolith": "Monolith",
"Tiered": "Tiered",
"Microservice": "Microservice"
}
} }
] ]
} }

9
docs/en/framework/ui/react-native/index.md

@ -167,9 +167,9 @@ A React Native application running on an Android emulator or a physical phone **
}, },
"MobileGateway": { "MobileGateway": {
"RootUrl": "http://192.168.1.36:44347/" "RootUrl": "http://192.168.1.36:44347/"
}, }
//... //...
}, }
//... //...
} }
} }
@ -249,7 +249,8 @@ A React Native application running on an Android emulator or a physical phone **
} }
} }
``` ```
{{ end }}
{{ end }}
Run the backend application as described in the [getting started document](../../../get-started). Run the backend application as described in the [getting started document](../../../get-started).
@ -257,7 +258,7 @@ Run the backend application as described in the [getting started document](../..
## How to disable the Https-only settings of OpenIddict ## How to disable the Https-only settings of OpenIddict
Open the {{ if Architecture == "Monolith" }}`MyProjectNameHttpApiHostModule`{{ if Architecture == "Tiered" }}`MyProjectNameAuthServerModule`{{ end }} project and copy-paste the below code-block to the `PreConfigureServices` method: Open the {{ if Architecture == "Monolith" }}`MyProjectNameHttpApiHostModule`{{ else if Architecture == "Tiered" }}`MyProjectNameAuthServerModule`{{ end }} project and copy-paste the below code-block to the `PreConfigureServices` method:
```csharp ```csharp
#if DEBUG #if DEBUG

Loading…
Cancel
Save