- Sidebar, sign-in page, and favicons all use the single SVG - Postinstall copies SVG for SaaS HTML favicon (gitignored) - Sign-in favicon committed (baked into Logto Docker image) - Remove old PNG favicon references Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
14 lines
373 B
HTML
14 lines
373 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Sign in — cameleer3</title>
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|