Prepare for deployment of v0.1

This commit is contained in:
Joseph Milazzo 2021-01-20 09:38:28 -06:00
parent ac993a59ba
commit 925a009f00
4 changed files with 59 additions and 2 deletions

View file

@ -0,0 +1,14 @@
using System.IO;
using API.Services;
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");
}
}
}