当我试图编译(lessc bootswatch.less > bootstrap.css)一个干净的Bootswatch安装时,我会得到这个错误:
..。错误评估函数
fadein:Object #没有方法'toHSL‘(更少:解析错误)。
上周起作用了..。
发布于 2014-11-06 17:52:00
另见less undefined method error。
引导程序文件应该与引导一起编译。因此,创建一个index.less文件,其中包含以下代码:
@import "bootstrap.less"; //from the Bootstrap source code
@import "variables.less"; //from your bootswatch theme
@import "bootswatch.less";而不是编译该文件:lessc index.less > bootstrap.css
https://stackoverflow.com/questions/26761361
复制相似问题