13 lines
No EOL
317 B
C#
13 lines
No EOL
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");
|
|
}
|
|
}
|
|
} |