Changes for Preview6

This commit is contained in:
Shaun Walker
2019-06-19 08:32:04 -04:00
parent 600872d0b0
commit 59a715e468
41 changed files with 107 additions and 105 deletions

View File

@ -278,14 +278,15 @@ namespace Oqtane.Server
app.UseBlazorDebugging();
}
app.UseClientSideBlazorFiles<Client.Startup>();
app.UseRouting();
app.UseEndpoints(endpoints =>
{
endpoints.MapDefaultControllerRoute();
endpoints.MapFallbackToClientSideBlazor<Client.Startup>("index.html");
});
app.UseBlazor<Client.Startup>();
}
#endif
}