rubyは2.6.3railsは6の状態で
bootstrap-sass gemを使おうとbundle installしても下記のようにエラーが出ます。
Error: File to import not found or unreadable: bootstrap-sprokets.
on line 1:1 of app/assets/stylesheets/custom.scss
rails6でbootstrapを使うにか何か工夫が必要なのでしょうか。
それともrails6関係ない箇所が原因なのでしょうか。
ご教示願います。宜しくお願い致します。
custom.scssの中身は以下の通り
scss
1 1 @import "bootstrap-sprokets"; 2 2 @import "bootstrap";
gem
1 1 source 'https://rubygems.org' 2 2 git_source(:github) { |repo| "https://github.com/#{repo}.git" } 3 3 4 4 ruby '2.6.3' 5 5 6 6 gem 'rails', '~> 6.0.0' 7 7 gem 'puma', '~> 3.11' 8 8 gem 'sassc-rails' 9 9 gem 'react-rails' 10 10 gem 'bootstrap-sass' 11 11 gem 'webpacker' 12 12 gem 'turbolinks', '~> 5' 13 13 gem 'jbuilder', '~> 2.7' 14 14 gem 'bootsnap', '>= 1.4.2', require: false 15 15 group :development, :test do 16 16 gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] 17 17 end 18 18 19 19 group :development do 20 20 gem 'web-console', '>= 3.3.0' 21 21 gem 'listen', '>= 3.0.5', '< 3.2' 22 22 gem 'sqlite3', '~> 1.4' 23 23 gem 'spring' 24 24 gem 'spring-watcher-listen', '~> 2.0.0' 25 25 end 26 26 27 27 group :test do 28 28 gem 'capybara', '>= 2.15' 29 29 gem 'selenium-webdriver' 30 30 gem 'webdrivers' 31 31 gem 'minitest' 32 32 gem 'minitest-reporters' 33 33 gem 'guard' 34 34 gem 'guard-minitest' 35 35 end 36 36 37 37 gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] 38
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。