- Change chmod 600 to 644 on bootstrap JSON (cameleer user needs read) - Use PNG favicon instead of SVG (currentColor invisible in browser tab) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
15 lines
454 B
HTML
15 lines
454 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png" />
|
|
<link rel="apple-touch-icon" sizes="192x192" href="/favicon-192.png" />
|
|
<title>Cameleer SaaS</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|