Skip to content

Commit

Permalink
Update electron.vite.config.mjs
Browse files Browse the repository at this point in the history
  • Loading branch information
sipsuru authored Nov 10, 2024
1 parent 8e6a620 commit 7e798c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions electron.vite.config.mjs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { defineConfig, externalizeDepsPlugin } from 'electron-vite'
import { defineConfig, externalizeDepsPlugin, bytecodePlugin } from 'electron-vite'

export default defineConfig({
main: {
plugins: [externalizeDepsPlugin()]
plugins: [externalizeDepsPlugin(), bytecodePlugin()]
},
preload: {
plugins: [externalizeDepsPlugin()]
plugins: [externalizeDepsPlugin(), bytecodePlugin()]
},
renderer: {}
})

0 comments on commit 7e798c5

Please sign in to comment.