A Gatsby plugin is a Node package that uses the Gatsby APIs under the hood.
You can use a plugin to source data into your site, transform content or enhance the output of your site like adding google analytics etc...
Gatsby plugins can be categorized into 3 types:
Install a plugin you can run the command npm install plugin-name
e.g npm install gatsby-plugin-postcss
.
Add the plugin to your gatsby-config.js
file
In this lesson, you learn how to use gatsby-plugin-postcss to add tailwindcss support to your project