local-weather/components/Analytics.tsx
ChrQR 04288c7dfe
All checks were successful
Docker Build & Publish / Build Docker (push) Successful in 1m8s
fixed cf?
2024-05-12 22:28:50 +02:00

12 lines
386 B
TypeScript

import Script from 'next/script';
export default function Analytics() {
return (
<Script
src="https://static.cloudflareinsights.com/beacon.min.js"
data-cf-beacon='{"token": "cc87b1af28264bd7aaf287ba7f905362"}'
defer
strategy="afterInteractive" // Ensures the script is loaded after the page is interactive
/>
);
}