fix: remove explicit routing

This commit is contained in:
Oliver Booth 2023-08-11 16:32:29 +01:00
parent 54f3706ba0
commit 049601a6fb
Signed by: oliverbooth
GPG Key ID: 725DB725A0D9EE61
1 changed files with 0 additions and 2 deletions

View File

@ -80,8 +80,6 @@ app.UseRouting();
app.UseAuthorization();
app.MapControllers();
app.MapControllerRoute("scoped", "{area:exists}/{controller=Home}/{action=Index}/{id?}");
app.MapControllerRoute("default", "{controller=Home}/{action=Index}/{id?}");
app.MapRazorPages();
app.MapRssFeed("/blog/feed");