]> git.ipfire.org Git - pbs.git/commitdiff
frontend: Update the index.html
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 19 Jun 2025 15:08:51 +0000 (15:08 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 19 Jun 2025 15:08:51 +0000 (15:08 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
frontend/index.html

index 9e5fc8f06c69dd7697ad566f198ae6577fdc15b2..d6c8fb1e0bf050bca1ad090415850d42dbaab423 100644 (file)
@@ -1,13 +1,19 @@
 <!DOCTYPE html>
 <html lang="">
-  <head>
-    <meta charset="UTF-8">
-    <link rel="icon" href="/favicon.ico">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>Vite App</title>
-  </head>
-  <body>
-    <div id="app"></div>
-    <script type="module" src="/src/main.ts"></script>
-  </body>
+       <head>
+               <!-- We use UTF-8 -->
+               <meta charset="UTF-8">
+
+               <!-- Favicon -->
+               <link rel="icon" href="/favicon.ico">
+
+               <!-- Make the viewport responsive -->
+               <meta name="viewport" content="width=device-width, initial-scale=1.0">
+       </head>
+       <body>
+               <div id="app"></div>
+
+               <!-- Load the main script -->
+               <script type="module" src="/src/main.ts"></script>
+       </body>
 </html>