Add SCSS support to Angular Project

By | Engineering

Since Angular 13, it’s super easy to change styling support from .css standard files to modern .scss files. If you need to know more about sass/scss files and the benefits they enable, follow this link: https://sass-lang.com/ You could say they are syntactically awesome styles! The script above will kickoff an Angular CLI command to update your css or scss to…

Read More

ASP.NET Core MVC Faster View Compiling!

By | Ramblings

In previous versions of ASP.NET you could make changes to a .cshtml view file and the changes would automatically be reflected by just refreshing the browser. As of the latest dotnet core build, v3.0, this feature was missing. There is an additional library that you can bring into your project that will re-enable this power. Run the following command to…

Read More