- Changed app title from "AeroTuner" to "K-Tuner" in index.html and vite.config.ts - Updated icon paths in index.html and vite.config.ts to use new icon files - Added new icon files in various sizes (128x128, 144x144, 152x152, 192x192, 256x256, 384x384, 512x512, 48x48, 72x72, 96x96) - Removed old PWA icons (pwa-192x192.png, pwa-512x512.png) - Updated package.json to use a newer version of @types/bun - Excluded test files from TypeScript compilation in tsconfig.app.json - Refactored Header component to display "K-Tuner"
19 lines
507 B
HTML
19 lines
507 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/icon-192x192.png" />
|
|
<link rel="apple-touch-icon" href="/icon-192x192.png">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="theme-color" content="#ffffff">
|
|
<meta name="description" content="A Frutiger Aero styled instrument tuner">
|
|
<title>K-Tuner</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
|
|
</html>
|