Initial Vite migration setup

This commit is contained in:
BlackWolfNews 2025-04-13 17:46:38 -06:00
parent 7c58477382
commit 35171070a1
88 changed files with 3341 additions and 3664 deletions

15
index.html Normal file
View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>ExcalidrawFork</title>
<link rel="stylesheet" href="/excalidraw.css" />
</head>
<body>
<div id="app"></div>
<script>
window.EXCALIDRAW_ASSET_PATH = '/assets/';
</script>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>