Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Update Customizing the Configuration of the ABP Application document #827

Merged
merged 1 commit into from
Sep 30, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@
}
```

```json
"Web": {
"rootUrl": "https://yourapp.azurewebsites.net/"
}
```

{{else}}

- Modify the **yourapp.Web** URL in every location throughout your project.
Expand All @@ -53,6 +59,12 @@
}
```

```json
"Web": {
"rootUrl": "https://yourapp.azurewebsites.net/"
}
```

- Modify the **yourapp.ApiHost** URL in every location throughout your project.

This includes the following files:
Expand Down Expand Up @@ -105,6 +117,12 @@
}
```

```json
"Angular": {
"rootUrl": "https://yourapp.azurewebsites.net/"
}
```

- Modify the **yourapp.HttpApi.Host** URL in every location throughout your project.

This includes the following files:
Expand All @@ -131,6 +149,12 @@
}
```

```json
"Blazor": {
"rootUrl": "https://yourapp.azurewebsites.net/"
}
```

- Modify the **yourapp.HttpApi.Host** URL in every location throughout your project.

This includes the following files:
Expand Down Expand Up @@ -185,6 +209,12 @@
}
```

```json
"Blazor": {
"rootUrl": "https://yourapp.azurewebsites.net/"
}
```

- Modify the **yourapp.ApiHost** URL in every location throughout your project.

This includes the following files:
Expand Down
Loading