@nartc/scully-plugin-google-gtag
TypeScript icon, indicating that this package has built-in type declarations

0.0.8 • Public • Published

scully-plugin-google-gtag

This is a postRenderer plugin that will append necessary script tags to initialize gtag.js to the Scully's pre-rendered pages' <head> tag. This plugin is based on Gatsby's official Gtag plugin

Installation

To install this plugin, run:

npm install -D @nartc/scully-plugin-google-gtag

Usage

import { ScullyConfig, setPluginConfig } from '@scullyio/scully';
import {
  getGaPlugin,
  GoogleAnalyticsConfig,
} from '@nartc/scully-plugin-google-gtag';

const GaPlugin = getGaPlugin();
setPluginConfig(GaPlugin, <GoogleAnalyticsConfig>{
  dryRun: true, // set dryRun to true to enable Gtag in develop mode
  trackingIds: ['YOUR_TRACKING_ID'],
});

export const config: ScullyConfig = {
  projectRoot: './src',
  projectName: 'scully-project',
  outDir: './dist/static',
  defaultPostRenderers: [GaPlugin],
  routes: {
    '/blog/:slug': {
      type: RouteTypes.contentFolder,
      slug: {
        folder: './blog',
      },
      postRenderers: [GaPlugin],
    },
  },
};

Configuration

scully-plugin-google-tag exposes GoogleAnalyticsConfig interface to help you providing the configuration for the plugin and for gtag

GoogleAnalyticsConfig
name type required description
dryRun boolean - Set this flag to true if you want to test gtag in development environment. Default to false
trackingIds string[] yes List of all tracking IDs that you want gtag to track
gtagConfig GoogleAnalyticsGtagConfig - Gtag specific configuration
pluginConfig GoogleAnalyticsPluginConfig - Plugin specific configuration
GoogleAnalyticsGtagConfig
name type required description
anonymize_ip boolean - To set anonymize_ip for gtag
optimize_id string - To set optimize_id for gtag
[key: string] any - Any other configuration parameters that gtag('config') accepts
GoogleAnalyticsPluginConfig
name type required description
respectDNT boolean - Respect DO_NOT_TRACK
exclude string[] - List of excluded paths that gtag will ignore

Questions or Issues

Feel free to open an issue

Contribution

Contribution of any kinds is greatly appreciated

Dependents (0)

Package Sidebar

Install

npm i @nartc/scully-plugin-google-gtag

Weekly Downloads

0

Version

0.0.8

License

MIT

Unpacked Size

63.1 kB

Total Files

29

Last publish

Collaborators

  • nartc