11 lines
275 B
TypeScript
11 lines
275 B
TypeScript
import { defineConfig, externalizeDepsPlugin, bytecodePlugin } from 'electron-vite';
|
|
|
|
export default defineConfig({
|
|
main: {
|
|
plugins: [externalizeDepsPlugin(), bytecodePlugin()]
|
|
},
|
|
preload: {
|
|
plugins: [externalizeDepsPlugin(), bytecodePlugin()]
|
|
}
|
|
// renderer: {}
|
|
});
|