ui_migration feat(deps): setup vite mjs and index.html

This commit is contained in:
Antonio Anaya 2026-01-20 17:59:16 -06:00
parent d6c636f0cb
commit 3e528fdfa1
3 changed files with 99 additions and 0 deletions

25
webapp/index.html Normal file
View file

@ -0,0 +1,25 @@
// index.html
// The main HTML file for the OpenFlexure Microscope web application.
// Vite will use this file as a template to build the final HTML served to users.
// It's at root directory to allow Vite to process it.
// The previous version was located at public/index.html.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="/favicon.ico">
<title>OpenFlexure Microscope</title>
</head>
<body>
<noscript>
<strong>We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>