fix: map admin static files under request path
TaxBaik CI/CD / build-and-deploy (push) Successful in 7m45s

This commit is contained in:
2026-07-04 20:28:40 +09:00
parent bdc6b0c80e
commit 08b002de27
+2 -2
View File
@@ -370,8 +370,8 @@ app.UseResponseCompression();
// 정적 파일 제공 (WASM 프레임워크 파일 포함)
app.UseStaticFiles();
app.UseStaticFiles("/admin");
app.UseStaticFiles("/portal");
app.UseStaticFiles(new StaticFileOptions { RequestPath = "/admin" });
app.UseStaticFiles(new StaticFileOptions { RequestPath = "/portal" });
app.UseSession(); // TempData 쿠키 저장소
app.UseRouting();