update webbase design

This commit is contained in:
ChiKyun Kim
2025-07-27 16:25:15 +09:00
parent afbac3248e
commit 0c5744c12c
17 changed files with 2414 additions and 225 deletions

View File

@@ -322,8 +322,8 @@ namespace Project.Web.Controllers
[HttpGet]
public HttpResponseMessage Index()
{
// 직접 파일을 읽어서 반환
var filePath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Web", "wwwroot", "index.html");
// DashBoard로 리디렉션하도록 변경
var filePath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Web", "wwwroot", "DashBoard", "index.html");
var contents = string.Empty;
if (System.IO.File.Exists(filePath))