We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6d9ffa commit c2cf81cCopy full SHA for c2cf81c
src/layouts/default/Document.tsx
@@ -1,3 +1,4 @@
1
+import { Script } from 'gatsby';
2
import { Fragment } from 'react';
3
4
type DocumentProps = {
@@ -9,6 +10,8 @@ export function Document({ metaData }: DocumentProps) {
9
10
<Fragment>
11
<title key="pageTitle">{metaData.title}</title>
12
<meta key="pageDescription" name="description" content={metaData.description} />
13
+ <meta name="referrer" content="no-referrer-when-downgrade" />
14
+ <Script id="analytics" defer data-domain="openscript.ch" src="https://analytics.obin.ch/js/script.js" />
15
</Fragment>
16
);
17
}
0 commit comments