mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
13 lines
317 B
C#
13 lines
317 B
C#
using System.IO;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace API.Controllers
|
|
{
|
|
public class FallbackController : Controller
|
|
{
|
|
public ActionResult Index()
|
|
{
|
|
return PhysicalFile(Path.Combine(Directory.GetCurrentDirectory(), "wwwroot", "index.html"), "text/HTML");
|
|
}
|
|
}
|
|
} |