Less integration with ASP.Net MVC

As I understand it, there are various solutions for processing free files in an ASP.Net MVC application, including:

I still work in an environment where Web Essentials is already installed and automatically compiles my .less files into CSS.

But in the Bundling and Minification article, they mention dot-less for managing files without snapping or grouping.

What is the recommended solution? Does anyone have any feedback on how to integrate without ASP.NET MVC?

+4
source share
1 answer

I like dot-less for debugging, you don't have to create it every time you make a CSS change to see it on the website. Then, in the production process, dotless will also compile and minimize CSS for you. You just need to change the link to your css file in your layouts.

+2
source

Source: https://habr.com/ru/post/1488299/


All Articles