feat: add Elec — dark mode multi-model chat UI

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
fyah
2026-05-09 11:14:28 +08:00
parent e9daabb821
commit 0ee021e613
15 changed files with 3589 additions and 0 deletions

19
Elec/vite.config.ts Normal file
View File

@@ -0,0 +1,19 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import electron from 'electron-vite/plugin'
export default defineConfig({
plugins: [
react(),
electron([
{
main: {
entry: 'src/main/index.ts',
},
preload: {
input: 'src/preload/index.ts',
},
},
]),
],
})