Initial commit: DeskFloat 桌面透明浮动工具栏

Tauri 2 + React:任务列表、快捷方式、番茄钟、系统托盘、钉子穿透模式等。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
wjl
2026-05-26 20:01:43 +08:00
commit 8e9d108995
103 changed files with 12278 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
// Tauri 推荐的 Vite 配置:固定端口、关闭 HMR overlay 等
// 详见 https://v2.tauri.app/start/frontend/vite/
export default defineConfig({
plugins: [react()],
clearScreen: false,
server: {
port: 1420,
strictPort: true,
host: false,
hmr: {
protocol: "ws",
host: "localhost",
port: 1421,
},
watch: {
ignored: ["**/src-tauri/**"],
},
},
build: {
target: "esnext",
minify: "esbuild",
sourcemap: false,
},
});