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 4deaa0d commit 5a7b6e4Copy full SHA for 5a7b6e4
projects/fastgpt/app/GoogleAnalytics.tsx
@@ -28,9 +28,7 @@ const GoogleAnalytics = () => {
28
/>
29
</>
30
)}
31
- {gtag.GA_VERIFICATION_ID && (
32
- <meta name="google-site-verification" content={gtag.GA_VERIFICATION_ID} />
33
- )}
+
34
35
);
36
};
projects/fastgpt/app/layout.tsx
@@ -32,6 +32,9 @@ export const metadata = {
other: {
'baidu-site-verification': process.env.NEXT_PUBLIC_BAIDU_KEY
? process.env.NEXT_PUBLIC_BAIDU_KEY
+ : '',
+ 'google-site-verification': process.env.NEXT_PUBLIC_GOOGLE_VERIFICATION_ID
37
+ ? process.env.NEXT_PUBLIC_GOOGLE_VERIFICATION_ID
38
: ''
39
}
40
0 commit comments