-
Notifications
You must be signed in to change notification settings - Fork 1
/
vite.config.ts
64 lines (62 loc) · 1.79 KB
/
vite.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import { rmSync } from 'node:fs'
import path from 'node:path'
import { fileURLToPath } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import electron from 'vite-plugin-electron'
import renderer from 'vite-plugin-electron-renderer'
import pkg from './package.json'
// https://vitejs.dev/config/
export default defineConfig(({ command }) => {
rmSync('dist-electron', { recursive: true, force: true })
return {
build: {
rollupOptions: {
input: {
index: fileURLToPath(new URL('public/index.html', import.meta.url)),
splash: fileURLToPath(new URL('public/splash.html', import.meta.url))
}
}
},
resolve: {
alias: {
'@': path.resolve(path.resolve(__dirname), 'src')
}
},
plugins: [
vue(),
electron(
['main', 'preload'].map(name => ({
entry: `src/process/${name}.ts`, // TODO: rename 'process' folder to 'app'
onstart: options => options.startup(),
vite: {
build: {
sourcemap: name === 'main'
? (command === 'serve')
: (command === 'serve' ? 'inline' : undefined),
minify: command === 'build',
outDir: `dist-electron/${name}`,
rollupOptions: {
external: Object.keys('dependencies' in pkg ? pkg.dependencies : {})
}
}
}
}))
),
renderer()
],
css: {
preprocessorOptions: {
scss: {
additionalData: `
@import '@/styles/_globals.scss';
@import '@/styles/_variables.scss';
@import '@/styles/_mixins.scss';
@import '@/styles/_keyframes.scss';
`
}
}
},
clearScreen: false
}
})