🎉 initial commit

This commit is contained in:
2026-06-08 17:15:43 +10:00
commit bfece01c67
33 changed files with 9920 additions and 0 deletions

12
electron.vite.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { resolve } from 'path'
import { defineConfig, externalizeDepsPlugin } from 'electron-vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
main: { plugins: [externalizeDepsPlugin()] },
preload: { plugins: [externalizeDepsPlugin()] },
renderer: {
resolve: { alias: { '@renderer': resolve('src/renderer') } },
plugins: [react()]
}
})