feat: integrate vite-plugin-electron
This commit is contained in:
parent
ec17b09cb5
commit
0011c249f0
|
@ -1,7 +1,39 @@
|
||||||
|
import { rmSync } from 'fs'
|
||||||
|
import { join } from 'path'
|
||||||
import { defineConfig } from 'vite'
|
import { defineConfig } from 'vite'
|
||||||
import react from '@vitejs/plugin-react'
|
import react from '@vitejs/plugin-react'
|
||||||
|
import electron from 'vite-plugin-electron'
|
||||||
|
import renderer from 'vite-plugin-electron/renderer'
|
||||||
|
|
||||||
|
rmSync('dist', { recursive: true, force: true }) // v14.14.0
|
||||||
|
|
||||||
// https://vitejs.dev/config/
|
// https://vitejs.dev/config/
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
plugins: [react()]
|
plugins: [
|
||||||
|
react(),
|
||||||
|
electron({
|
||||||
|
main: {
|
||||||
|
entry: 'electron-main/index.ts',
|
||||||
|
vite: {
|
||||||
|
build: {
|
||||||
|
sourcemap: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
preload: {
|
||||||
|
input: {
|
||||||
|
// You can configure multiple preload here
|
||||||
|
splash: join(__dirname, 'electron-preload/splash.ts'),
|
||||||
|
},
|
||||||
|
vite: {
|
||||||
|
build: {
|
||||||
|
// For debug
|
||||||
|
sourcemap: 'inline',
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
// Enable use Electron, Node.js API in Renderer-process
|
||||||
|
renderer(),
|
||||||
|
]
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue