Skip to content
This repository was archived by the owner on Jan 20, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions docs/docs/what-is-a-plugin.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
title: What is a Plugin?
title: プラグインとは?
---

Gatsby plugins are Node.js packages that implement Gatsby APIs. For larger, more complex sites, plugins let you modularize your site customizations into site-specific plugins.
Gatsby プラグインは、Gatsby API を実装する Node.js パッケージです。より大規模で複雑なサイトの場合、プラグインを使用するとサイトのカスタマイズをサイト固有のプラグインにモジュール化できます。

One of the best ways to add functionality to Gatsby is through our plugin system. Gatsby is designed to be extensible, which means plugins are able to extend and modify just about everything Gatsby does.
Gatsby に機能を追加するもっとも良い方法の 1 つは、プラグインシステムを使用することです。Gatsby は拡張可能に設計されています。つまり、プラグインは Gatsby が行うほぼすべてを拡張および変更できます。

Of the many possibilities, plugins can:
たとえば、プラグインを使うことで以下のようなことができます。

- add external data or content (e.g. your CMS, static files, a REST API) to your Gatsby GraphQL data
- transform data from other formats (e.g. Markdown, YAML, CSV) to JSON objects
- add third-party services (e.g. Google Analytics, Instagram) to your site
- add bundled, pre-configured functionality with [themes](/docs/themes/)
- do anything you can dream up!
- Gatsby GraphQL のデータに外部データまたはコンテンツ(CMS、静的ファイル、REST API など)を追加。
- データを他の形式(MarkdownYAMLCSV など)から JSON オブジェクトに変換。
- サイトにサードパーティのサービス(Google AnalyticsInstagram など)を追加。
- [テーマ](docs/themes) を使用して、バンドルされている事前に設定した機能を追加。
- 思いつく限りのことをしてください!