Cleanup of different stuff that can be deleted from Umbraco.Web

Signed-off-by: Bjarke Berg <mail@bergmania.dk>
This commit is contained in:
Bjarke Berg
2020-10-22 12:23:32 +02:00
parent 5ecc2676e3
commit 6905e5e734
43 changed files with 296 additions and 2492 deletions

View File

@@ -33,7 +33,10 @@ namespace Umbraco.Web.UI.NetCore
public void ConfigureServices(IServiceCollection services)
{
var umbracoBuilder = services.AddUmbraco(_env, _config);
umbracoBuilder.BuildWithAllBackOfficeComponents();
umbracoBuilder
.WithAllBackOfficeComponents()
.WithAllWebsiteComponents()
.Build();
}