Set the second argument of ReactGA.initialize

This commit is contained in:
aokiken 2019-11-18 16:24:08 +09:00
parent 77d6aa58ba
commit 63ab6c00d7
2 changed files with 2 additions and 1 deletions

View File

@ -22,4 +22,5 @@ Then, set an environment variable
```
window.STORYBOOK_GA_ID = UA-000000-01
window.STORYBOOK_REACT_GA_OPTIONS = {}
```

View File

@ -5,7 +5,7 @@ import { STORY_CHANGED, STORY_ERRORED, STORY_MISSING } from '@storybook/core-eve
import ReactGA from 'react-ga';
addons.register('storybook/google-analytics', api => {
ReactGA.initialize(window.STORYBOOK_GA_ID);
ReactGA.initialize(window.STORYBOOK_GA_ID, window.STORYBOOK_REACT_GA_OPTIONS);
api.on(STORY_CHANGED, () => {
const { url } = api.getUrlState();