mirror of
https://github.com/electron-vite/electron-vite-vue
synced 2025-01-31 12:06:40 +08:00
chore: electron standalone profile
This commit is contained in:
parent
82551cf63b
commit
5416e33b85
@ -1,9 +1,9 @@
|
||||
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 renderer from 'vite-plugin-electron/renderer'
|
||||
import electronConfig from './vite.config.electron'
|
||||
|
||||
rmSync('dist', { recursive: true, force: true }) // v14.14.0
|
||||
|
||||
@ -11,30 +11,7 @@ rmSync('dist', { recursive: true, force: true }) // v14.14.0
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
vue(),
|
||||
electron({
|
||||
main: {
|
||||
entry: 'electron/main/index.ts',
|
||||
vite: {
|
||||
build: {
|
||||
sourcemap: false,
|
||||
outDir: 'dist/electron/main',
|
||||
},
|
||||
},
|
||||
},
|
||||
preload: {
|
||||
input: {
|
||||
// You can configure multiple preload here
|
||||
splash: join(__dirname, 'electron/preload/splash.ts'),
|
||||
},
|
||||
vite: {
|
||||
build: {
|
||||
// For debug
|
||||
sourcemap: 'inline',
|
||||
outDir: 'dist/electron/preload',
|
||||
}
|
||||
}
|
||||
},
|
||||
}),
|
||||
electron(electronConfig),
|
||||
// Enable use Electron, Node.js API in Renderer-process
|
||||
renderer(),
|
||||
],
|
||||
|
Loading…
x
Reference in New Issue
Block a user