From 9ad3081ceffc1b7c43d347ca39095f890fea227b Mon Sep 17 00:00:00 2001 From: ciaochaos <1272777550@qq.com> Date: Thu, 2 Jul 2020 14:03:25 +0800 Subject: [PATCH] =?UTF-8?q?GA=20=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/app/App.js | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/components/app/App.js b/src/components/app/App.js index ae0c15b..63c867b 100644 --- a/src/components/app/App.js +++ b/src/components/app/App.js @@ -13,7 +13,22 @@ import {loadDownloadData} from "../../actions"; import ReactGA from 'react-ga'; import {setScrollbarWidthProp} from "../../utils/util" -ReactGA.initialize(['UA-165845289-1','G-3NKS6ZG27V']); +ReactGA.initialize( + [ + { + trackingId: 'UA-165845289-1', + gaOptions: { + name: 'trackerUA', + } + }, + { + trackingId: 'G-3NKS6ZG27V', + gaOptions: { name: 'trackerG' } + } + ], + { debug: true, alwaysSendToDefaultTracker: false } +); + function App({ dispatch }) { const updateDownloadData = useCallback((downloadData) => dispatch(loadDownloadData(downloadData)), []); setScrollbarWidthProp()