From c98384bfcdb2c104a27738ac0ba262f79d2fb5bf Mon Sep 17 00:00:00 2001 From: "chris.watts90@outlook.com" Date: Sun, 18 Jun 2017 19:29:45 +0100 Subject: [PATCH] add css folder for static files. --- RaceLapTimer/RaceLapTimer/AuthenticationBootstrapper.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/RaceLapTimer/RaceLapTimer/AuthenticationBootstrapper.cs b/RaceLapTimer/RaceLapTimer/AuthenticationBootstrapper.cs index da3b537..64bcf19 100644 --- a/RaceLapTimer/RaceLapTimer/AuthenticationBootstrapper.cs +++ b/RaceLapTimer/RaceLapTimer/AuthenticationBootstrapper.cs @@ -90,6 +90,9 @@ namespace RaceLapTimer conventions.StaticContentsConventions.Add( StaticContentConventionBuilder.AddDirectory("js", "js") ); + conventions.StaticContentsConventions.Add( + StaticContentConventionBuilder.AddDirectory("css","css") + ); } } }