I've been diving into the official LESS documentation (version 1.5) and I'm struggling to grasp how I can import a reference to another CSS file to utilize its content in my own stylesheet. For instance:
stylesheet.less
@import (reference) "bootstrap.min.css";
.myclass {
.class-name;
}
However, when I try this, I encounter the following error:
NameError: .class-name is undefined
Could it be that I'm misinterpreting something in the documentation?