Project start

This commit is contained in:
Liviu Burcusel 2025-09-11 15:08:48 +02:00
commit 175e397191
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C
23 changed files with 366 additions and 0 deletions

17
index.html Normal file
View file

@ -0,0 +1,17 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="shortcut icon" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dexie Test</title>
<meta
name="description"
content="Testing the easiest way to use IndexedDB. Dexie is a lightweight, minimalistic wrapper that provides a straightforward API for developers using IndexedDB."
/>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>