Merge branch 'master' of github.com:datopian/portal.js into feature/i18n-next10
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -36,3 +36,4 @@ pages/App.css
|
|||||||
packages/portal/node_modules
|
packages/portal/node_modules
|
||||||
packages/create-portal-app/node_modules
|
packages/create-portal-app/node_modules
|
||||||
packages/portal/.next
|
packages/portal/.next
|
||||||
|
packages/portal/.env
|
||||||
|
|||||||
34
packages/portal/pages/_document.tsx
Normal file
34
packages/portal/pages/_document.tsx
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
import Document, { Html, Head, Main, NextScript } from 'next/document';
|
||||||
|
|
||||||
|
const GA_TRACKING_ID = 'G-NX72GYFHFS';
|
||||||
|
export default class CustomDocument extends Document {
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<Html>
|
||||||
|
<Head>
|
||||||
|
<script
|
||||||
|
async
|
||||||
|
src="https://www.googletagmanager.com/gtag/js?id=G-NX72GYFHFS"
|
||||||
|
/>
|
||||||
|
<script
|
||||||
|
dangerouslySetInnerHTML={{
|
||||||
|
__html: `
|
||||||
|
window.dataLayer = window.dataLayer || [];
|
||||||
|
function gtag(){dataLayer.push(arguments);}
|
||||||
|
gtag('js', new Date());
|
||||||
|
|
||||||
|
gtag('config', '${GA_TRACKING_ID}',{
|
||||||
|
page_path: window.location.pathname,
|
||||||
|
});
|
||||||
|
`,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</Head>
|
||||||
|
<body>
|
||||||
|
<Main />
|
||||||
|
</body>
|
||||||
|
<NextScript />
|
||||||
|
</Html>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user