feat(Header): Add drag and no-drag regions for desktop app

* 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.
This commit is contained in:
VancySavoki
2025-09-01 15:58:07 +08:00
parent da13c7b759
commit e49d20dcdb
2 changed files with 1 additions and 2 deletions

2
.gitignore vendored
View File

@@ -8,7 +8,7 @@ pnpm-debug.log*
lerna-debug.log* lerna-debug.log*
node_modules node_modules
dist/* dist
dist-ssr dist-ssr
*.local *.local

View File

@@ -7,6 +7,5 @@ export default defineConfig({
plugins: [react()], plugins: [react()],
optimizeDeps: { optimizeDeps: {
exclude: ['lucide-react'], exclude: ['lucide-react'],
}, },
}); });