防止创建样式表文件。离子

问题描述 投票:0回答:1

我想使用原理图“ionic g c ...”生成一个没有样式表文件的新组件 enter image description here

离子信息

离子 CLI:7.2.0

离子框架:@ionic/angular 7.8.4

@Angular-devkit/构建-Angular:17.3.4

@Angular-devkit/原理图:17.3.4

@角度/cli:17.3.4

@ionic/角度工具包:11.0.1

我尝试添加选项“--inline-style=true”或“--skype-style=true”,但不起作用。我还尝试添加到下一个 angular.json 文件:

"schematics": {
    "@ionic/angular-toolkit:component": {
      "skipStyle":true
    }
}
angular ionic-framework components styled-components angular-schematics
1个回答
0
投票

使用--no-style标志:

离子生成组件原理图现在包含一个

--no-style
标志,您可以使用它来防止创建样式表文件:

Bash
ionic g c my-component --no-style

此命令将生成组件文件

(my-component.component.ts and my-component.component.html)
没有相应的样式表
(my-component.component.css).

© www.soinside.com 2019 - 2024. All rights reserved.