first commit

This commit is contained in:
2026-07-17 13:02:59 -04:00
commit 8ffd50b7cc
15 changed files with 13518 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import electron from 'vite-plugin-electron/simple'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
react(),
electron({
main: {
// Main process entry point — compiled to dist-electron/main.js
entry: 'electron/main.js',
},
preload: {
// Preload script entry point — compiled to dist-electron/preload.js
input: 'electron/preload.js',
},
// Activates vite-plugin-electron-renderer:
// polyfills Node built-ins (path, fs, etc.) that are used in renderer
renderer: {},
}),
],
})