mirror of
https://github.com/Viren070/tmdb-addon.git
synced 2025-12-01 23:18:11 +01:00
c857d18e2a
- Move public folder to project root for better organization - Add proper favicon configuration for all routes using serve-favicon - Add multiple favicon sizes and formats for better device compatibility - Add theme-color meta tag for mobile browsers - Add proper meta description for SEO - Configure static file serving for both API and configuration page Changes: - Moved /configure/public to /public - Added serve-favicon middleware - Updated index.html with proper meta tags and favicon links - Updated static file serving configuration in index.js - Added proper cache headers for static assets This change improves the organization of static assets and ensures the favicon is properly displayed across all routes and devices.
21 lines
823 B
HTML
21 lines
823 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>The Movie Database Addon - Stremio Addon</title>
|
|
<link rel="icon" href="/favicon.png" type="image/png" sizes="32x32" />
|
|
<link rel="icon" href="/favicon.png" type="image/png" sizes="16x16" />
|
|
<link rel="apple-touch-icon" href="/favicon.png" />
|
|
<link rel="shortcut icon" href="/favicon.png" type="image/png" />
|
|
<meta name="theme-color" content="#01b4e4" />
|
|
<meta name="description" content="Configure your TMDB Addon for Stremio" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script src="https://cdn.gpteng.co/gptengineer.js" type="module"></script>
|
|
<script type="module" src="/configure/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|