/ index.html
index.html
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8" /> 5 <link rel="icon" type="image/svg+xml" href="/vite.svg" /> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 7 <title>InterBrain - Browser Development</title> 8 <style> 9 body { 10 margin: 0; 11 padding: 0; 12 font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 13 background: #1e1e1e; 14 color: #ffffff; 15 overflow: hidden; 16 } 17 #root { 18 width: 100vw; 19 height: 100vh; 20 } 21 </style> 22 </head> 23 <body> 24 <div id="root"></div> 25 <script type="module" src="/src/browser-main.tsx"></script> 26 </body> 27 </html>