feat: initial commit

This commit is contained in:
2026-06-15 13:39:41 +07:00
commit 0afbecbe83
32 changed files with 6620 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { defineConfig, externalizeDepsPlugin } from 'electron-vite'
import tailwindcss from '@tailwindcss/vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
main: {
plugins: [externalizeDepsPlugin()]
},
preload: {
plugins: [externalizeDepsPlugin()]
},
renderer: {
plugins: [tailwindcss(), react()]
}
})