Plugins
Common Plugins
Usage
import { somePlugin } from '@outsmartly/plugin-something';
export default {
host: 'example.outsmartly.app',
environments: [
{
name: 'production',
origin: 'https://my-example-website.vercel.app',
},
],
plugins: [
// Most plugins provide a factory function for passing in options:
somePlugin({
something: true,
}),
],
};Making Your Own Plugins
Example
Last updated
Was this helpful?