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.

NextjsにBootstrapを導入する方法

Posted at

Nextjsにbootstrapを導入する方法は、以外と簡単です。

yarn add bootstrap

これで最新のBootstrapが導入されます。
最新のものに更新する場合は、

yarn upgrade bootstrap --latest

です。
これで、Nextjsにbootstrapのモジュールが入ったわけです。
このモジュールを利用して実際にプログラムを書いていきます。

通常、bootstrapは全てのページで読み込みますので
_app.js
にbootstrapを使う旨を宣言します。

Nextjsでは、_app.jsってファイルが、共通で読み込まれるページです。
これは、pageのフォルダーの中にあると思いますが、ファイルの一番上に、下記の1行追加します。

import 'bootstrap/dist/css/bootstrap.min.css';

これで、bootstrapがすべてのページで使えるようになります。

簡単でしょ。

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?