"There is no option without color (" less --help "for reference)" LESS

I use less for front-end development, but I get this error the last couple of days.

I use PhpStorm watchers to compile fewer files into css files. But when I edited a smaller file, the compiler adds this line to the top of the css file, and the css file no longer works.

Nor does it even compile fewer files; enter image description here

+4
source share
1 answer

The proper name for the LESS compiler is that lesscwhich is installed as the npm ( npm install -g less) package . It is written in JavaScript and requires nodejs to run.

less "" Linux/Unix.

+7

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


All Articles