forked from ProjectCampus-CH/exam-showboard-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelectron.vite.config.ts
104 lines (99 loc) · 2.69 KB
/
electron.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
import { resolve } from 'path';
import { defineConfig, externalizeDepsPlugin } from 'electron-vite';
// Plugins
import AutoImport from 'unplugin-auto-import/vite';
import Components from 'unplugin-vue-components/vite';
import { DevUiResolver } from 'unplugin-vue-components/resolvers';
import Fonts from 'unplugin-fonts/vite';
import Layouts from 'vite-plugin-vue-layouts';
import Vue from '@vitejs/plugin-vue';
import VueRouter from 'unplugin-vue-router/vite';
import Vuetify, { transformAssetUrls } from 'vite-plugin-vuetify';
// import rawLoader from 'raw-loader'
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons';
// import vue from '@vitejs/plugin-vue'
export default defineConfig({
main: {
plugins: [externalizeDepsPlugin()]
},
preload: {
plugins: [externalizeDepsPlugin()]
},
renderer: {
resolve: {
alias: {
'@renderer': resolve('src/renderer/src')
}
},
plugins: [
VueRouter({
dts: resolve('src/renderer/src/typed-router.d.ts'),
routesFolder: [
{
src: resolve('src/renderer/src/pages'),
path: '',
// override globals
exclude: (excluded) => excluded,
filePatterns: (filePatterns) => filePatterns,
extensions: (extensions) => extensions
}
]
}),
Layouts(),
Vue({
template: { transformAssetUrls }
}),
// https://github.com/vuetifyjs/vuetify-loader/tree/master/packages/vite-plugin#readme
Vuetify({
autoImport: true,
styles: {
configFile: 'src/styles/settings.scss'
}
}),
Components({
dts: 'src/components.d.ts',
resolvers: [DevUiResolver()]
}),
Fonts({
google: {
families: [
{
name: 'Roboto',
styles: 'wght@100;300;400;500;700;900'
}
]
}
}),
AutoImport({
imports: [
'vue',
{
'vue-router/auto': ['useRoute', 'useRouter']
}
],
dts: 'src/auto-imports.d.ts',
eslintrc: {
enabled: true
},
vueTemplate: true
}),
createSvgIconsPlugin({
// Specify the icon folder to be cached
iconDirs: [resolve('src/renderer/src/icons')],
// Specify symbolId format
symbolId: 'icon-[dir]-[name]',
/**
* custom insert position
* @default: body-last
*/
// inject?: 'body-last' | 'body-first',
/**
* custom dom id
* @default: __svg__icons__dom__
*/
customDomId: '__svg__icons__dom__'
})
],
define: { 'process.env': {} }
}
});