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 3 years have passed since last update.

config.ymlってなに

0
Posted at

config.yml

Jekyllプロジェクトのルートディレクトリに配置される設定ファイル
Jekyllウェブサイトの動作や外観に関する設定が含まれている

_config.ymlファイルで可能な設定

  • プロジェクトの基本情報
    ウェブサイトのタイトルや説明、製作者などの基本的な情報を指定

  • ビルド設定
    ウェブサイトをビルドする際の設定を行う
    ビルド先のディレクトリ、除外するファイルやディレクトリ、プラグインの有効化などを指定可能

  • テーマの設定
    テーマを使用してウェブサイトの外観を設定できる
    (_config.ymlファイルで使用するテーマを指定可能)

  • カスタム変数や設定
    ウェブサイトで使用するカスタム変数や設定を定義できる
    テンプレート内で変数を使用して柔軟なコンテンツ生成が可能


  • _config.ymlファイルの内容はYAML(YAML Ain't Markup Language)形式で記述
    →YAMLは人間に読みやすく、コンピューターにも解析しやすいデータシリアル化形式

  • Jekyllは、_config.ymlファイルの設定を読み込んでウェブサイトをビルドする際に使用
    ウェブサイトの外観や動作を変更するには、この設定ファイルを編集する

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?