Compare commits

..

No commits in common. "b65235162a83c062ebb430e0d58263180dadda8e" and "97ee981ea22d291be09f3d1cd6712ba2b9c83d93" have entirely different histories.

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.UseCors("CorsPolicy");
app.UseAuthorization();
@ -123,7 +120,6 @@ app.UseEndpoints(end =>
end.MapControllers();
end.MapHub<ChatHub>("/chatHub");
});
*/
app.Run();