Fix missed reorder of HttpsRedirection calls in spa templates (#140)

This commit is contained in:
Justin Kotalik 2017-11-01 12:52:10 -07:00 committed by GitHub
parent 36fe9b40ef
commit 06bff32f4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -43,8 +43,8 @@ namespace AngularSpa
app.UseHsts();
}
app.UseStaticFiles();
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseMvc(routes =>
{

View File

@ -44,8 +44,8 @@ namespace ReactSpa
app.UseHsts();
}
app.UseStaticFiles();
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseMvc(routes =>
{

View File

@ -44,8 +44,8 @@ namespace ReactReduxSpa
app.UseHsts();
}
app.UseStaticFiles();
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseMvc(routes =>
{