chat-app/frontend/index.html
Gal Podlipnik ae4b75225e
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 1m29s
title + icon
2025-06-15 21:47:06 +02:00

14 lines
356 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chat App</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>