import { resolve } from 'path' import { defineConfig, externalizeDepsPlugin } from 'electron-vite' import react from '@vitejs/plugin-react' export default defineConfig({ main: { plugins: [externalizeDepsPlugin()], build: { rollupOptions: { external: ['node-pty', 'ws', 'chokidar', 'diff-match-patch'] } } }, preload: { plugins: [externalizeDepsPlugin()] }, renderer: { resolve: { alias: { '@': resolve('src/renderer/src') } }, plugins: [react()] } })