Added CriticalCSS, defered CSS and JS, fixed heading order, fixed front-end querycache url, added response compression and caching

This commit is contained in:
2026-01-01 14:57:37 +01:00
parent 3b96d7212b
commit b20102785a
13 changed files with 307 additions and 55 deletions

View File

@@ -20,8 +20,14 @@ public class HomeController : Controller
_domainManager = domainManager;
}
[Authorize]
[HttpGet("/")]
public IActionResult Root()
{
return Redirect("/Home/Index");
}
[Authorize]
[HttpGet("Index")]
public IActionResult Index()
{
return View();