-
Notifications
You must be signed in to change notification settings - Fork 6
/
vite.config.ts
81 lines (80 loc) · 2.07 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { crx } from '@crxjs/vite-plugin'
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import { NaiveUiResolver } from 'unplugin-vue-components/resolvers'
import Unocss from 'unocss/vite'
import presetUno from '@unocss/preset-uno'
import { isDev, r } from './scripts/utils'
import { getManifest } from './src/manifest'
// https://vitejs.dev/config/
export default defineConfig(({ mode }) => {
const productionMode = mode === 'production'
return {
resolve: {
alias: {
'~/': `${r('src')}/`,
},
},
define: {
__DEV__: isDev,
__VUE_OPTIONS_API__: true,
__VUE_PROD_DEVTOOLS__: false,
__VUE_PROD_HYDRATION_MISMATCH_DETAILS__: false,
},
plugins: [
vue(),
crx({ manifest: getManifest(mode) }),
AutoImport({
imports: [
{
'webextension-polyfill': [
['*', 'browser'],
],
},
{
'naive-ui': [
'useDialog',
'useMessage',
'useNotification',
'useLoadingBar',
],
},
],
dts: r('src/auto-imports.d.ts'),
eslintrc: {
enabled: true,
},
}),
Components({
dirs: [r('src/components')],
// generate `components.d.ts` for ts support with Volar
dts: r('src/components.d.ts'),
resolvers: [NaiveUiResolver()],
}),
// https://github.com/unocss/unocss
Unocss({
presets: [
presetUno(),
],
}),
],
build: {
emptyOutDir: true,
outDir: productionMode ? 'dist-prod' : 'dist',
sourcemap: productionMode ? false : 'inline',
rollupOptions: {
input: {
computersManager: r('computers-manager.html'),
jobStats: r('job-stats.html'),
jenkinsTools: r('jenkins-tools.html'),
},
},
},
test: {
globals: true,
environment: 'jsdom',
},
}
})