first commit

This commit is contained in:
2026-07-17 13:28:28 -04:00
commit fe0288c284
31 changed files with 10756 additions and 0 deletions
+60
View File
@@ -0,0 +1,60 @@
import { rmSync } from 'node:fs'
import path from 'node:path'
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import electron from 'vite-plugin-electron/simple'
import pkg from './package.json'
export default defineConfig(({ command }) => {
rmSync('dist-electron', { recursive: true, force: true })
const isServe = command === 'serve'
const isBuild = command === 'build'
const sourcemap = isServe || !!process.env.VSCODE_DEBUG
return {
resolve: {
alias: { '@': path.join(__dirname, 'src') },
},
plugins: [
react(),
electron({
main: {
entry: 'electron/main/index.js',
onstart(args) {
if (process.env.VSCODE_DEBUG) {
console.log('[startup] Electron App')
} else {
args.startup()
}
},
vite: {
build: {
sourcemap,
minify: isBuild,
outDir: 'dist-electron/main',
rollupOptions: {
external: Object.keys(pkg.dependencies ?? {}),
},
},
},
},
preload: {
input: 'electron/preload/index.js',
vite: {
build: {
sourcemap: sourcemap ? 'inline' : undefined,
minify: isBuild,
outDir: 'dist-electron/preload',
rollupOptions: {
external: Object.keys(pkg.dependencies ?? {}),
},
},
},
},
renderer: {},
}),
],
clearScreen: false,
}
})