Configuration
Learn how to configure Umbraco UI Builder in your project using two different approaches.
Option 1: Configuring via a Composer
using Umbraco.Cms.Core.Composing;
using Umbraco.UIBuilder.Extensions;
public class UIBuilderComposer : IComposer
{
public void Compose(IUmbracoBuilder builder)
{
builder.AddUIBuilder(cfg =>
{
// Apply your configuration here
});
}
}Option 2: Configuring via Program.cs
Program.csExample Configuration
Last updated
Was this helpful?