Home  >  Article  >  Web Front-end  >  How to use less in angular6

How to use less in angular6

php中世界最好的语言
php中世界最好的语言Original
2018-05-30 10:45:561983browse

This time I will show you how to use less in angular6, and what are the precautions for using less in angular6. The following is a practical case, let's take a look.

New project

ng new<a href="//m.sbmmt.com/wiki/165.html" target="_blank"> [appname] --style less</a>

Existing project

Modify the *.css file and

reference with the suffix less and set the following content in the angular.json file

{
 "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
 "version": 1,
 "newProjectRoot": "projects",
 "projects": {
  "ngTest": {
   "root": "",
   "sourceRoot": "src",
   "projectType": "application",
   "prefix": "app",
   "schematics": {
    "@schematics/angular:component": {
     "styleext": "less"
    }
   }
 ......
}
I believe you have mastered it after reading the case in this article For more exciting methods, please pay attention to other related articles on the php Chinese website!

Recommended reading:

How to use async function in js

How to optimize js async function

The above is the detailed content of How to use less in angular6. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn