尽管使用了一次导入,LESS 仍在不同文件中导入相同的 LESS。
例如:
<link rel="stylesheet/less" type="text/css" href="app.less">
<link rel="stylesheet/less" type="text/css" href="theme.less">
无应用程序
@import-once "1.less";
body{
color:blue;
}
无主题
@import-once "1.less";
body{
color:pink;
}
产生:
<style type="text/css" id="less:good-docs-less-app">
body {
background: yellow;
}
body {
color: blue;
}
</style>
<style type="text/css" id="less:good-docs-less-theme">
body {
background: yellow;
}
body {
color: pink;
}
</style>
您注意到body{background:yellow}
两种样式都重复。是否可以在不写两次的情况下将其导入两个 LESS 文件中?