0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Rails7.0でbootstrapを導入する

Posted at

Rails7.0でbootstrapを導入する

bootstrap-sass を Rails 7.0 プロジェクトに導入する手順は以下の通りです。
Rails プロジェクトの Gemfile を開きます。

Gemfile 内に以下の行を追加して、bootstrap-sass gem を導入します。

gem "bootstrap-sass", "3.4.1"

ターミナルを開き、プロジェクトのルートディレクトリに移動します。

ターミナルで以下のコマンドを実行して、新しい Gem をインストールします。

bundle install

application.scss ファイル(通常は app/assets/stylesheets/application.scss)を作成して、以下をインポートします。

@import "bootstrap-sprockets";
@import "bootstrap";

これで bootstrap-sass gem のバージョン 3.4.1 が Rails 7.0 プロジェクトに導入されました。SCSS ファイル内で Bootstrap のクラスやコンポーネントを使用できるようになります。

参考資料
https://railstutorial.jp/chapters/filling_in_the_layout?version=7.0#sec-structure

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?