これは、main.less
すでにbootstrap
パッケージを追加したmeteorアプリのファイルです。
@import "variables.less";
@import "mixins.less";
#searchbar {
.border-radius(10px);
.box-shadow();
}
しかし、でアプリを開くと、http://localhost:3000/
次のエラーが発生します。
Your app is crashing. Here's the latest log.
Errors prevented startup:
/Users/anup/code/projects/learning/main.less: Less compiler error: .border-radius is undefined
/Users/anup/code/projects/learning/main.less: Less compiler error: .border-radius is undefined
Your application is crashing. Waiting for file change.
、、、および他のすべてのブートストラップクラスは、私のソースからは問題なく機能し.span4
ます(これは、ベースディレクトリにもあります) 。.dropdown
main.html
main.less
でブートストラップミックスインを使用するにはどうすればよいmain.less
ですか?
更新:驚くべきことに、これを入れればmain.less
@import "variables.less";
@import "mixins.less";
#searchbar {
}
その後、エラーはに変わります
Your app is crashing. Here's the latest log.
Errors prevented startup:
/Users/anup/code/projects/learning/main.less: Less compiler error: 'variables.less' wasn't found.
/Users/anup/code/projects/learning/main.less: Less compiler error: 'variables.less' wasn't found.
Your application is crashing. Waiting for file change.