feat: add viewport meta tag with charset to index.html for mobile responsiveness

Inserted <meta charset="UTF-8"> and <meta name="viewport" content="width=device-width, initial-scale=1.0"> into the <head> section of src/rchat/static/index.html, ensuring proper character encoding and responsive scaling on mobile browsers.
This commit is contained in:
retoor 2024-12-05 20:46:15 +00:00
parent 99cf3da9ab
commit 5b2b91f06c

View File

@ -2,6 +2,9 @@
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>rchat</title>
<style>
body {