Skip to content
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
6 changes: 4 additions & 2 deletions 13/umbraco-ui-builder/getting-started/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ Umbraco UI Builder can be configured directly via the `AddUIBuilder` extension m

## AddUIBuilder

To configure Umbraco UI Builder via the `AddUIBuilder` extension method, You can look in the `Program.cs` file in the root of your web project. From within this file, before the call to `AddComposers()` we can add our `AddUIBuilder` configuration.
To configure Umbraco UI Builder via the `AddUIBuilder` extension method, you can look at the `Program.cs` file at the root of your web project. From within this file, before the call to `AddComposers()` you can add the `AddUIBuilder` configuration.

Alternatively, if your project is upgraded from earlier versions, you can add the configuration to the `Startup.cs` file.

```csharp
builder.CreateUmbracoBuilder()
Expand All @@ -22,4 +24,4 @@ builder.CreateUmbracoBuilder()
.Build();
```

The `AddUIBuilder` extension method accepts a single parameter, a delegate function with one of the Umbraco UI Builder configuration builder arguments. With this, you can then call the relevant fluent APIs to define your solution.
The `AddUIBuilder` extension method accepts a single parameter, a delegate function with one of the Umbraco UI Builder configuration builder arguments. With this, you can call the relevant fluent APIs to define your solution.
Loading