feat: support setting up GTM

This commit is contained in:
Fred Liang
2024-01-22 15:06:41 +08:00
committed by Fred Liang
parent 0cf6614186
commit 31d9d2efcd
2 changed files with 8 additions and 1 deletions

View File

@@ -6,7 +6,7 @@ import { getClientConfig } from "./config/client";
import { type Metadata } from "next";
import { SpeedInsights } from "@vercel/speed-insights/next";
import { getServerSideConfig } from "./config/server";
import { GoogleTagManager } from "@next/third-parties/google";
const serverConfig = getServerSideConfig();
export const metadata: Metadata = {
@@ -46,6 +46,11 @@ export default function RootLayout({
<SpeedInsights />
</>
)}
{serverConfig?.gtmId && (
<>
<GoogleTagManager gtmId={serverConfig.gtmId} />
</>
)}
</body>
</html>
);