1.0.1 • Published 2 years ago

@crometrics/gatsby-plugin-optimizely v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

gatsby-plugin-optimizely-js

A Gatsby plugin to add an Optimizely JS Snippet to your site.

Install

$ npm install --save gatsby-plugin-optimizely-js

How to use

Setup

In your gatsby-config.js file:

plugins: [
  {
    resolve: `gatsby-plugin-optimizely-js`,
    options: {
      // The optimizely id of the project. 
      // This is the number that appears in the snippet.
      optimizelyId: '123456789',
    }
  }
];