121116 updated to Ga4
This commit is contained in:
+8
-6
@@ -38,11 +38,12 @@ class MyDocument extends Document {
|
||||
csp += `base-uri 'self';`;
|
||||
csp += `form-action 'self' ` + process.env.NEXTAUTH_URL + ` ;`;
|
||||
csp += `object-src 'self' data:;`;
|
||||
csp +=
|
||||
`script-src 'self' ` +
|
||||
process.env.NEXTAUTH_URL +
|
||||
` 'unsafe-inline' https://www.googletagmanager.com https://maps.googleapis.com 'nonce-${generatedNonce}' 'unsafe-eval';`;
|
||||
csp += `style-src 'self' https://fonts.googleapis.com 'unsafe-inline' data:;`;
|
||||
csp += `default-src 'self' https://www.google-analytics.com;`;
|
||||
csp += `connect-src 'self' https://region1.google-analytics.com;`;
|
||||
csp += `script-src 'self' 'unsafe-eval' 'unsafe-inline' https://region1.google-analytics.com https://www.google-analytics.com/ https://tagmanager.google.com/ https://www.googletagmanager.com/;`;
|
||||
csp += `style-src 'self' 'unsafe-inline' https://pro.fontawesome.com/ https://www.google-analytics.com https://tagmanager.google.com/ https://www.googletagmanager.com/ https://fonts.googleapis.com/;`;
|
||||
csp += `img-src 'self' 'unsafe-inline' https://fonts.gstatic.com https://www.googletagmanager.com https://www.google-analytics.com https://ssl.gstatic.com/ data:;`;
|
||||
csp += `font-src 'self' 'unsafe-inline' https://pro.fontawesome.com/ https://fonts.gstatic.com/ data:;`;
|
||||
|
||||
return (
|
||||
<Html lang={locale}>
|
||||
@@ -50,10 +51,11 @@ class MyDocument extends Document {
|
||||
<meta httpEquiv="Content-Security-Policy" content={csp} />
|
||||
{useGATracking && (
|
||||
<Tracking
|
||||
googleTagManagerID={googleTagManagerID}
|
||||
googleTagManagerID="G-GTWW3JT03Z"
|
||||
nonce={generatedNonce}
|
||||
/>
|
||||
)}
|
||||
{/* <GoogleAnalytics gaId={googleTagManagerID} /> */}
|
||||
</Head>
|
||||
<body className="js-enabled">
|
||||
{useGATracking && (
|
||||
|
||||
Reference in New Issue
Block a user