mirror of
https://github.com/electron-vite/electron-vite-vue
synced 2025-01-19 03:46:35 +08:00
45 lines
1.0 KiB
TypeScript
45 lines
1.0 KiB
TypeScript
import { rmSync } from 'fs'
|
|
import { join } from 'path'
|
|
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import electron from 'vite-plugin-electron'
|
|
import pkg from './package.json'
|
|
|
|
rmSync('dist', { recursive: true, force: true }) // v14.14.0
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
vue(),
|
|
electron({
|
|
main: {
|
|
entry: 'electron/main/index.ts',
|
|
vite: {
|
|
build: {
|
|
outDir: 'dist/electron/main',
|
|
},
|
|
},
|
|
},
|
|
preload: {
|
|
input: {
|
|
// You can configure multiple preload here
|
|
index: join(__dirname, 'electron/preload/index.ts'),
|
|
},
|
|
vite: {
|
|
build: {
|
|
// For debug
|
|
sourcemap: 'inline',
|
|
outDir: 'dist/electron/preload',
|
|
}
|
|
}
|
|
},
|
|
// Enables use of Node.js API in the Renderer-process
|
|
renderer: {},
|
|
}),
|
|
],
|
|
server: {
|
|
host: pkg.env.VITE_DEV_SERVER_HOST,
|
|
port: pkg.env.VITE_DEV_SERVER_PORT,
|
|
},
|
|
})
|