A Gatsby plugin to add an Optimizely JS Snippet to your site.
$ npm install --save @crometrics/gatsby-plugin-optimizely-js
In your gatsby-config.js file:
plugins: [
{
resolve: `@crometrics/gatsby-plugin-optimizely-js`,
options: {
// The optimizely id of the project.
// This is the number that appears in the snippet.
optimizelyId: '123456789',
}
}
];