我们的项目中有一个无第三方文件 - 比如说foo.less
. foo.less
将编译为foo.css
.
foo.less
foo.css
-- team1.less
-- team1.css
-- team2.less
-- team2.css
team1.less
并且team2.less
都导入foo.less
.
Team1
在其网页上
引用了foo.css
和,而Team2引用了和。team1.css
foo.css
team2.css
如何在各自的编译输出中获取team1.css
和team2.css
排除?foo.css
现在发生的事情是team1.css
并且team2.css
两者都有foo.css
(重复css代码)。
编辑:
team1.less
并team2.less
导入foo.less
以利用许多变量和混合。