feat: scaffold Tauri v2 + Vite + TypeScript project

This commit is contained in:
Your Name
2026-02-19 01:23:27 +02:00
parent 47d4409bcc
commit 24746bb33d
12 changed files with 164 additions and 0 deletions

14
src/index.html Normal file
View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TutorialDock</title>
</head>
<body>
<div id="zoomRoot">
<div class="app"></div>
</div>
<script type="module" src="/main.ts"></script>
</body>
</html>

1
src/main.ts Normal file
View File

@@ -0,0 +1 @@
console.log("TutorialDock frontend loaded");

1
src/vite-env.d.ts vendored Normal file
View File

@@ -0,0 +1 @@
/// <reference types="vite/client" />