Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望在通过 Angular cli 创建新组件时生成 .scss 文件,但我得到的是 .css 文件。尝试添加默认值
"defaults": { "styleExt": "scss", }
在 angular.json 但它不起作用。我正在开发最新版本,即 Angular 6。有人知道如何获得这个吗?
不像以前的版本,
您需要用下面的代码替换上面的行。
"schematics": { "@schematics/angular:component": { "style": "scss" } }
您可以在使用以下代码创建项目时轻松设置样式。
ng new project_name --style=scss