1.0.6 • Published 3 years ago

gatsby-plugin-snap-engage v1.0.6

Weekly downloads
9
License
0BSD
Repository
github
Last release
3 years ago

Gatsby Plugin for Snap Engage

Easily add Snap Engage Chat to your Gatsby site.

Install

Using NPM

npm install --save gatsby-plugin-snap-engage

Using Yarn

yarn add gatsby-plugin-snap-engage

How to use

// In your gatsby-config.js

// Simple setup
plugins: [
  {
      resolve: `gatsby-plugin-snap-engage`,
      options: {
        multilingual: false,
        id: 'YOUR_SNAP_ENGAGE_SCRIPT_ID',
        includeInDevelopment: false,
      },
    },
];

// Multilingual setup
plugins: [
  {
      resolve: `gatsby-plugin-snap-engage`,
      options: {
        multilingual: true,
        defaultLocale: 'en',
        locales: {
          'en': 'YOUR_SNAP_ENGAGE_SCRIPT_ID_FOR_LOCALE',
          'fr': 'YOUR_SNAP_ENGAGE_SCRIPT_ID_FOR_LOCALE'
        },
        includeInDevelopment: false,
      },
    },
];
1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago