Community Plugin
View plugin on GitHubgatsby-plugin-google-adsense
Add Google Adsense Tag to your Gatsby site.
Usage
Install the plugin:
npm install @w2-yamaguchi/gatsby-plugin-google-adsenseor
yarn add @w2-yamaguchi/gatsby-plugin-google-adsenseAdd it to your gatsby-config.js & configure Your publisher ID(required):
// In your gatsby-config.js
module.exports = {
plugins: [
{
resolve: `@w2-yamaguchi/gatsby-plugin-google-adsense`,
options: {
publisherId: "YOUR_GOOGLE_ADSENSE_PUBLISHER_ID", // Required
},
},
],
};Configuration
The options are as follows:
| Property | Type | Default | Description |
|---|---|---|---|
publisherId |
String |
n/a (required) | Your publisher ID. This looks like this: pub-1234567891234567. See here for more information. |