欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

在angular 6中使用 less 的实例代码

程序员文章站 2022-07-06 07:58:15
新项目 ng new [appname] --style less 已有的项目 修改 *.css 文件及引用处后缀名为 less并在 angular.json 文件中...

新项目

ng new [appname] --style less

已有的项目

修改 *.css 文件及引用处后缀名为 less并在 angular.json 文件中设置以下内容

{
 "$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"
    }
   }
 ......
}

总结

以上所述是小编给大家介绍的在angular 6中使用 less 的实例代码,希望对大家有所帮助