local-weather/components/Analytics.tsx

12 lines
386 B
TypeScript
Raw Normal View History

2024-05-12 20:28:50 +00:00
import Script from 'next/script';
export default function Analytics() {
2024-05-12 20:21:27 +00:00
return (
2024-05-12 20:28:50 +00:00
<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
/>
);
2024-05-12 20:21:27 +00:00
}