Added Electron Framework

This commit is contained in:
2025-04-30 18:17:34 -06:00
parent 801c58d11a
commit 11f95edf02
5 changed files with 248 additions and 56 deletions

View File

@ -0,0 +1,16 @@
////////// PROJECT FILE SEPARATION LINE ////////// CODE AFTER THIS LINE ARE FROM: <ProjectRoot>/Data/Electron/vite.config.ts
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'path'
export default defineConfig({
root: path.resolve(__dirname, 'renderer'),
build: {
outDir: path.resolve(__dirname, 'dist/renderer')
},
server: {
port: 5173
},
plugins: [react()]
})