My angular project is defaulted to CSS styling framework. But for some components I need to adopt LESS framework. I tried the following command to create the component with LESS framework but still the component is generated with CSS file.
ng g c testFolder/components/test-component --export=true --module=test-module --style=less
Can somebody tell me how do I create my component with LESS framework by not changing the defaults in my project?
ng g c testFolder/components/test-component --style=less
this can not cahnge the defaults in project.