gatsby-plugin-google-adsense
Add Google Adsense Tag to your Gatsby site.
Usage
Install the plugin:
npm install @w2-yamaguchi/gatsby-plugin-google-adsense
or
yarn add @w2-yamaguchi/gatsby-plugin-google-adsense
Add 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. |