Compare commits

..

2 Commits

Author SHA1 Message Date
200399575f Merge pull request '[👷🏻] 채팅(Base) 수정 5차' (#26) from seonkyu.kim/AcaMate_API:main into debug
All checks were successful
Back/pipeline/head This commit looks good
Reviewed-on: https://git.ipstein.myds.me/AcaMate/AcaMate_API/pulls/26
2025-02-17 15:58:09 +00:00
4b7308f9d6 [👷🏻] 채팅(Base) 수정 5차
Signed-off-by: seonkyu.kim <sean.kk@daum.net>
2025-02-18 00:57:23 +09:00

View File

@ -74,7 +74,6 @@ builder.Services.AddEndpointsApiExplorer();
builder.Services.AddCustomSwagger();
// SignalR 설정 추가 부분
/*
builder.Services.AddSignalR();
builder.Services.AddCors(option =>
{
@ -88,7 +87,6 @@ builder.Services.AddCors(option =>
});
});
*/
///// ===== builder 설정 부 ===== /////
@ -111,9 +109,8 @@ else
app.UseHttpsRedirection();
app.UseRouting();
app.MapControllers();
// app.MapControllers();
/*
app.UseCors("CorsPolicy");
app.UseAuthorization();
@ -123,7 +120,6 @@ app.UseEndpoints(end =>
end.MapControllers();
end.MapHub<ChatHub>("/chatHub");
});
*/
app.Run();