61 lines
1.6 KiB
JavaScript
61 lines
1.6 KiB
JavaScript
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,
|
|
}
|
|
})
|