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"
2024-05-12 20:35:39 +00:00
data-cf-beacon='{"token": "415b318dd3f74a44b53827fb9d3da273"}'
2024-05-12 20:28:50 +00:00
defer
strategy="afterInteractive" // Ensures the script is loaded after the page is interactive
/>
);
2024-05-12 20:21:27 +00:00
}