14 lines
236 B
JavaScript
14 lines
236 B
JavaScript
|
import {
|
||
|
defineConfig, externalizeDepsPlugin,
|
||
|
} from 'electron-vite';
|
||
|
|
||
|
export default defineConfig({
|
||
|
main: {
|
||
|
plugins: [externalizeDepsPlugin()],
|
||
|
},
|
||
|
preload: {
|
||
|
plugins: [externalizeDepsPlugin()],
|
||
|
},
|
||
|
renderer: {},
|
||
|
});
|