diff --git a/src/Web/WebSPA/.angular-cli.json b/src/Web/WebSPA/.angular-cli.json index df26c160c..131f2897c 100644 --- a/src/Web/WebSPA/.angular-cli.json +++ b/src/Web/WebSPA/.angular-cli.json @@ -19,7 +19,8 @@ "testTsconfig": "tsconfig.spec.json", "prefix": "app", "styles": [ - "global.scss" + "globals.scss", + "../node_modules/bootstrap/scss/bootstrap.scss" ], "scripts": [], "environmentSource": "environments/environment.ts", diff --git a/src/Web/WebSPA/Client/global.scss b/src/Web/WebSPA/Client/globals.scss similarity index 100% rename from src/Web/WebSPA/Client/global.scss rename to src/Web/WebSPA/Client/globals.scss diff --git a/src/Web/WebSPA/Startup.cs b/src/Web/WebSPA/Startup.cs index 916ad4e16..f06cb8ee1 100644 --- a/src/Web/WebSPA/Startup.cs +++ b/src/Web/WebSPA/Startup.cs @@ -101,8 +101,8 @@ namespace eShopConContainers.WebSPA app.UseDefaultFiles(); app.UseStaticFiles(); - - app.UseMvc(); + + app.UseMvcWithDefaultRoute(); } } } diff --git a/src/Web/WebSPA/wwwroot/favicon.ico b/src/Web/WebSPA/wwwroot/favicon.ico deleted file mode 100644 index e499a7453..000000000 Binary files a/src/Web/WebSPA/wwwroot/favicon.ico and /dev/null differ