28 lines
527 B
C#
28 lines
527 B
C#
|
using SewingDressesClientApp;
|
||
|
|
||
|
var builder = WebApplication.CreateBuilder(args);
|
||
|
|
||
|
builder.Services.AddControllersWithViews().AddRazorRuntimeCompilation();
|
||
|
|
||
|
var app = builder.Build();
|
||
|
|
||
|
APIClient.Connect(builder.Configuration);
|
||
|
|
||
|
if (!app.Environment.IsDevelopment())
|
||
|
{
|
||
|
app.UseExceptionHandler("/Home/Error");
|
||
|
app.UseHsts();
|
||
|
}
|
||
|
|
||
|
app.UseHttpsRedirection();
|
||
|
app.UseStaticFiles();
|
||
|
|
||
|
app.UseRouting();
|
||
|
|
||
|
app.UseAuthorization();
|
||
|
|
||
|
app.MapControllerRoute(
|
||
|
name: "default",
|
||
|
pattern: "{controller=Home}/{action=Index}/{id?}");
|
||
|
|
||
|
app.Run();
|