We don't want to compile less files individually as they wont compile individually for the bootstrap source. This resolves this issue and allows the precompiler to run without error even with LESS.
Requiring a bootstrap less file works fine still within the scope of a main application css or less file...
Example application.less:
@import 'bootstrap';
h1 {
color: white;
}
This file will still be able to find bootstrap and compile a final packaged less file.
We don't want to compile less files individually as they wont compile individually for the bootstrap source. This resolves this issue and allows the precompiler to run without error even with LESS.
Requiring a bootstrap less file works fine still within the scope of a main application css or less file...
Example application.less:
This file will still be able to find bootstrap and compile a final packaged less file.