LoginSignup
8
5

More than 5 years have passed since last update.

bootstrap-sassでエラーメモ

Posted at

全部はいらないよね?bootstrap-sassをカスタマイズして使う方法
の記事を参考に設定するとエラーが発生。

Undefined variable: "$alert-padding". while precompile assets

通常は上記記事のようにやるとうまくいくと思うが、今回は下記を追記していた。

/config/initializers/assets.rb
Rails.application.config.assets.precompile += %w( *.js *.css)

こちらに報告されているように *.cssがよろしくないよう。

/config/initializers/assets.rb
Rails.application.config.assets.precompile += %w( *.js *application.css)

で対応し、エラー解決!

8
5
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
5