Easily add SnapEngage script tag to your Gatsby site.
Using NPM
npm install --save gatsby-plugin-snap-engage
Using Yarn
yarn add gatsby-plugin-snap-engage
// In your gatsby-config.js // Simple setupplugins: [ { resolve: `gatsby-plugin-snap-engage`, options: { id: "YOUR_SNAP_ENGAGE_SCRIPT_ID", includeInDevelopment: false, }, },]; // Multilingual setupplugins: [ { resolve: `gatsby-plugin-snap-engage`, options: { defaultLocale: "en", locales: { en: "YOUR_SNAP_ENGAGE_SCRIPT_ID_FOR_LOCALE", fr: "YOUR_SNAP_ENGAGE_SCRIPT_ID_FOR_LOCALE", }, includeInDevelopment: false, }, },];