-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvite.config.ts
64 lines (63 loc) · 1.87 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 { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import unocss from 'unocss/vite'
import electron from 'vite-plugin-electron/simple'
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
// https://vitejs.dev/config/
export default defineConfig({
/* applies to only *.js, *.ts and *.vue file in render process */
build: {
sourcemap: true,
minify: true,
},
plugins: [
vue(),
unocss(),
electron({
main: {
entry: 'electron/main.ts',
vite: {
publicDir: 'electron/public',
build: {
/*
* Enable sourcemap for debugging
* Main process:
* - Create a 'Node.js' run/debug configuration
* - node interpreter: select electron/electron.cmd in current project.
* - node parameter: '--remote-debugging-port=9229 .'
* Render process:
* - Create a 'Attach to Node.js' run/debug configuration
* - port: 9229
* Also see: https://blog.jetbrains.com/webstorm/2016/05/getting-started-with-electron-in-webstorm/
*/
sourcemap: true,
minify: true,
// lib: {
// entry: 'electron/main.ts',
// formats: ['cjs'],
// fileName: () => '[name].cjs'
// }
}
}
},
preload: {
input: 'electron/preload.ts',
vite: {
build: {
sourcemap: true,
minify: true,
}
}
}
}),
/* on-demand import, this lead to faster vue-tsc run and a much smaller bundle. */
AutoImport({
resolvers: [ElementPlusResolver()]
}),
Components({
resolvers: [ElementPlusResolver()]
})
]
})