Skip to content

Commit

Permalink
feat(core): add delivery api to services (#66)
Browse files Browse the repository at this point in the history
Adds support for delivery api.
  • Loading branch information
alexsee committed Mar 17, 2024
1 parent febdc99 commit 2425b2b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@
################################################################################

/.vs/UmbracoContainer
/output
/UmbracoContainer/uSync/v9
/UmbracoContainer/Views
/UmbracoContainer/umbraco/Data
1 change: 1 addition & 0 deletions UmbracoContainer/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public void ConfigureServices(IServiceCollection services)
services.AddUmbraco(_env, _config)
.AddBackOffice()
.AddWebsite()
.AddDeliveryApi()
.AddComposers()
.Build();
}
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "8.0.100"
"version": "8.0.203"
}
}

0 comments on commit 2425b2b

Please sign in to comment.