Skip to content

Commit d06e032

Browse files
authored
Merge pull request #6421 from bjarnef/patch-26
Update configuration.md
2 parents 2b94c08 + aa2ec20 commit d06e032

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

13/umbraco-ui-builder/getting-started/configuration.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ Umbraco UI Builder can be configured directly via the `AddUIBuilder` extension m
88

99
## AddUIBuilder
1010

11-
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.
11+
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.
12+
13+
Alternatively, if your project is upgraded from earlier versions, you can add the configuration to the `Startup.cs` file.
1214

1315
```csharp
1416
builder.CreateUmbracoBuilder()
@@ -22,4 +24,4 @@ builder.CreateUmbracoBuilder()
2224
.Build();
2325
```
2426

25-
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.
27+
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.

0 commit comments

Comments
 (0)