I currently have 3 different .less files (1file.less, 2file.less, 3file.less) that I want to combine into a single file called base.less.
To import these files into base.less, I am using the @import "1file.less" method.
However, upon inspecting the page code, I noticed that the code from all 3 .less files is being compiled twice. Is there a way to ensure that the code only compiles from base.less?
Currently, there is a duplication issue.
body {
margin: 0;
padding: 0;
background: #ffffff url(Images/background.png) repeat;
font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
height: 100%;
}
body {
margin: 0;
padding: 0;
background: #ffffff url(Images/background.png) repeat;
font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
height: 100%;
}
Thank you P.S. Apologies for any language errors in my message