diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fca46e9..b485af2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -14,6 +14,8 @@ export const metadata: Metadata = { description: "The best code & coffee in the world.", }; +const env = process.env.NODE_ENV; + export default function RootLayout({ children, }: { @@ -22,11 +24,13 @@ export default function RootLayout({ return (
- + {env === "production" ? ( + + ) : null}