mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Set the second argument of ReactGA.initialize
This commit is contained in:
parent
77d6aa58ba
commit
63ab6c00d7
@ -22,4 +22,5 @@ Then, set an environment variable
|
||||
|
||||
```
|
||||
window.STORYBOOK_GA_ID = UA-000000-01
|
||||
window.STORYBOOK_REACT_GA_OPTIONS = {}
|
||||
```
|
||||
|
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user