feat: integrate vite-plugin-electron

This commit is contained in:
草鞋没号 2022-06-05 08:33:10 +08:00
parent ec17b09cb5
commit 0011c249f0
1 changed files with 33 additions and 1 deletions

View File

@ -1,7 +1,39 @@
import { rmSync } from 'fs'
import { join } from 'path'
import { defineConfig } from 'vite'
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/
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(),
]
})