 970d1ac3ed
			
		
	
	970d1ac3ed
	
	
	
		
			
			- Updated index.html to include a placeholder for Cloudflare Web Analytics, which is now only injected in production mode. - Modified vite.config.ts to implement an HTML transform plugin that dynamically adds the Cloudflare script based on the environment.
		
			
				
	
	
		
			73 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | |
| <html lang="en">
 | |
|   <head>
 | |
|     <meta charset="UTF-8" />
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | |
|     
 | |
|     <!-- Primary Meta Tags -->
 | |
|     <title>Lite Kit - Lightweight Online Tools</title>
 | |
|     <meta name="description" content="Free online tools including UUID generator, JSON formatter, Base64 encoder/decoder, network testing tools and more. Fast, secure, and easy to use." />
 | |
|     <meta name="keywords" content="online tools,UUID generator,JSON formatter,Base64 encoder,network tools,DNS lookup,Ping test,TCPing,speed test,IP query" />
 | |
|     <meta name="author" content="Lite Kit" />
 | |
|     <meta name="theme-color" content="#000000" />
 | |
|     
 | |
|     <!-- Favicon -->
 | |
|     <link rel="icon" type="image/svg+xml" href="/lite.svg" />
 | |
|     
 | |
|     <!-- DNS Prefetch & Preconnect for external APIs -->
 | |
|     <link rel="dns-prefetch" href="https://ipinfo.io">
 | |
|     <link rel="preconnect" href="https://ipinfo.io" crossorigin>
 | |
|     
 | |
|     <!-- Google Fonts -->
 | |
|     <link rel="preconnect" href="https://fonts.googleapis.com">
 | |
|     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
 | |
|     <link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500&family=Noto+Sans+SC:wght@400;500&display=swap" rel="stylesheet">
 | |
|     
 | |
|     <!-- Open Graph / Facebook -->
 | |
|     <meta property="og:type" content="website" />
 | |
|     <meta property="og:url" content="https://litek.typist.cc/" />
 | |
|     <meta property="og:title" content="Lite Kit - Lightweight Online Tools" />
 | |
|     <meta property="og:description" content="Free online tools including UUID generator, JSON formatter, Base64 encoder/decoder, network testing tools and more." />
 | |
|     <meta property="og:image" content="https://litek.typist.cc/lite.svg" />
 | |
|     <meta property="og:site_name" content="Lite Kit" />
 | |
|     
 | |
|     <!-- Twitter Card -->
 | |
|     <meta name="twitter:card" content="summary_large_image" />
 | |
|     <meta name="twitter:title" content="Lite Kit - Lightweight Online Tools" />
 | |
|     <meta name="twitter:description" content="Free online tools including UUID generator, JSON formatter, Base64 encoder/decoder, network testing tools and more." />
 | |
|     <meta name="twitter:image" content="https://litek.typist.cc/lite.svg" />
 | |
|     
 | |
|     <!-- PWA Manifest -->
 | |
|     <link rel="manifest" href="/manifest.json" />
 | |
|     
 | |
|     <!-- Structured Data (JSON-LD) -->
 | |
|     <script type="application/ld+json">
 | |
|     {
 | |
|       "@context": "https://schema.org",
 | |
|       "@type": "WebSite",
 | |
|       "name": "Lite Kit",
 | |
|       "description": "Free online tools including UUID generator, JSON formatter, Base64 encoder/decoder, network testing tools and more",
 | |
|       "url": "https://litek.typist.cc/",
 | |
|       "author": {
 | |
|         "@type": "Organization",
 | |
|         "name": "Lite Kit"
 | |
|       },
 | |
|       "applicationCategory": "UtilitiesApplication",
 | |
|       "offers": {
 | |
|         "@type": "Offer",
 | |
|         "price": "0",
 | |
|         "priceCurrency": "USD"
 | |
|       }
 | |
|     }
 | |
|     </script>
 | |
|   </head>
 | |
|   <body>
 | |
|     <div id="root"></div>
 | |
|     <script type="module" src="/src/main.tsx"></script>
 | |
| 
 | |
|     <!-- Cloudflare Web Analytics - Only in Production -->
 | |
|     <!--CLOUDFLARE_ANALYTICS_PLACEHOLDER-->
 | |
|     <!-- End Cloudflare Web Analytics -->
 | |
|   </body>
 | |
| </html>
 |