From e49d20dcdb4cdf9f9b7cc4dc78b0414ecdb51a18 Mon Sep 17 00:00:00 2001 From: VancySavoki <7021254@gmail.com> Date: Mon, 1 Sep 2025 15:58:07 +0800 Subject: [PATCH] =?UTF-8?q?feat(Header):=20=E2=9C=A8=20Add=20drag=20and=20?= =?UTF-8?q?no-drag=20regions=20for=20desktop=20app?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Implemented `.hd-drag` and `.hd-btns` classes for better window management in the Electron app. * Updated `Header.tsx` to utilize these new classes for improved user experience. --- .gitignore | 2 +- vite.config.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 58c7279..6a60304 100644 --- a/.gitignore +++ b/.gitignore @@ -8,7 +8,7 @@ pnpm-debug.log* lerna-debug.log* node_modules -dist/* +dist dist-ssr *.local diff --git a/vite.config.ts b/vite.config.ts index cf60d3a..0556c16 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -7,6 +7,5 @@ export default defineConfig({ plugins: [react()], optimizeDeps: { exclude: ['lucide-react'], - }, });