-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathvite.config.ts
60 lines (56 loc) · 1.4 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
import { resolve } from 'path';
import { builtinModules } from 'module';
import { defineConfig, loadEnv } from 'vite';
import { NaiveUiResolver } from 'unplugin-vue-components/resolvers';
import UnoCSS from 'unocss/vite';
import vue from '@vitejs/plugin-vue';
import electron from 'vite-plugin-electron/simple';
import AutoImport from 'unplugin-auto-import/vite';
import renderer from 'vite-plugin-electron-renderer';
import Components from 'unplugin-vue-components/vite';
const resolvePath = (path: string) => {
return resolve(__dirname, '.', path);
};
export default defineConfig(({ mode }) => {
//@ts-ignore
const env = loadEnv(mode, process.cwd());
return {
base: './',
root: __dirname,
build: {
fileName: 'dist',
emptyOutDir: true,
rollupOptions: {
external: ['electron', ...builtinModules]
}
},
optimizeDeps: {
exclude: ['electron']
},
plugins: [
vue(),
renderer(),
UnoCSS(),
AutoImport({
imports: ['vue', 'vue-router', 'pinia']
}),
Components({
resolvers: [NaiveUiResolver()]
}),
electron({
main: {
entry: 'electron/main.ts'
},
preload: {
input: resolvePath('electron/preload.ts')
}
})
],
resolve: {
extensions: ['.ts', '.js', '.vue', '.json'],
alias: {
'@': resolvePath('./src')
}
}
};
});