我想使用bootstrap并通过less来自定义它。我的主要文件看起来像这样:
@import "../bower_components/bootstrap/less/bootstrap";
@import "custom-bootstrap-variables";
bootstrap.less
还包含多个导入。是否可以“忽略”bootstrap.less
中的某些导入,例如well.less
,而不更改原始bootstap.less
。
类似的东西:
@import "../bower_components/bootstrap/less/bootstrap";
@import "custom-bootstrap-variables";
@ignore "bootstrap/well"