Fixes: SPA page tracking
This commit is contained in:
23
server/pages/components/Analytics.js
Normal file
23
server/pages/components/Analytics.js
Normal file
@ -0,0 +1,23 @@
|
||||
// @flow
|
||||
import * as React from 'react';
|
||||
|
||||
function Analytics() {
|
||||
if (!process.env.GOOGLE_ANALYTICS_ID) return null;
|
||||
|
||||
return (
|
||||
<React.Fragment>
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
|
||||
ga('create', '${process.env.GOOGLE_ANALYTICS_ID}', 'auto');
|
||||
ga('send', 'pageview');
|
||||
`,
|
||||
}}
|
||||
/>
|
||||
<script async src="https://www.google-analytics.com/analytics.js" />
|
||||
</React.Fragment>
|
||||
);
|
||||
}
|
||||
|
||||
export default Analytics;
|
Reference in New Issue
Block a user