initial version (alpha)

This commit is contained in:
Danny Morabito 2025-10-12 13:01:25 -05:00
commit b39d63702e
Signed by: dannym
GPG key ID: 7CC8056A5A04557E
122 changed files with 15911 additions and 0 deletions

11
electron.vite.config.ts Normal file
View file

@ -0,0 +1,11 @@
import { defineConfig, externalizeDepsPlugin, bytecodePlugin } from 'electron-vite';
export default defineConfig({
main: {
plugins: [externalizeDepsPlugin(), bytecodePlugin()]
},
preload: {
plugins: [externalizeDepsPlugin(), bytecodePlugin()]
}
// renderer: {}
});