私は jekyll サイトを持っており、ブートストラップ用の jekyll-assets 組み込みサポートを使用しようとしています。
これまでに行ったことは次のとおりです。
Gemfile
次を含めるように更新しました。
gem "jekyll-assets"
_plugins/ext.rb
ファイルを次のように更新しました。
require "jekyll-assets"
require "jekyll-assets/bootstrap"
require "jekyll-assets/font-awesome"
styles.scss
ファイルを次のように更新しました。
@import "font-awesome";
@import "bootstrap";
を実行するjekyll build
と、次のエラーが表示されます。
Liquid Exception: File to import not found or unreadable: bootstrap. Load path...
jekyll 2.1.0 | Error: File to import not found or unreadable: bootstrap.
を削除する@import "bootstrap";
と、font-awesome コードがファイルに正しく追加されるstyles.css
ので、他のすべてが適切に設定されていると思います。ブートストラップが正しく機能しないように、何か間違ったことをしているだけです。