Configuration
Learn how to configure Umbraco UI Builder using the extension method.
You can configure Umbraco UI Builder using the AddUIBuilder
extension method in Program.cs
.
Using AddUIBuilder
AddUIBuilder
To configure Umbraco UI Builder:
Open the
Program.cs
file in your project.Locate the
CreateUmbracoBuilder()
method.Add
AddUIBuilder
beforeAddComposers()
.
If you want an example configuration, see the Configure Umbraco UI Builder section in the Creating your First Integration article.
The AddUIBuilder
method accepts a delegate function, allowing you to configure your solution using fluent APIs.
Last updated
Was this helpful?