-
Notifications
You must be signed in to change notification settings - Fork 7
/
vite.config.ts
67 lines (63 loc) · 1.92 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
/// <reference types="vitest" />
import vue from '@vitejs/plugin-vue'
import {resolve} from 'path'
import AutoImport from 'unplugin-auto-import/vite'
import {defineConfig} from 'vite'
// @ts-ignore
import Components from 'unplugin-vue-components/vite'
// @ts-ignore
import {NaiveUiResolver} from 'unplugin-vue-components/resolvers'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
AutoImport({
imports: [
'vue',
/*
* TODO X: 关键补充, 一些组件加载不正常, 用此解决
* - https://www.naiveui.com/zh-CN/light/docs/import-on-demand
*
* */
{
'naive-ui': [
'useDialog',
'useMessage',
'useNotification',
'useLoadingBar'
]
}
],
dts: './src/auto-imports.d.ts',
eslintrc: {
enabled: true,
filepath: resolve(__dirname, '.eslintrc-auto-import.json'),
},
}),
/*
* TODO X: 关键补充, 一些组件加载不正常, 用此解决
* - https://www.naiveui.com/zh-CN/light/docs/import-on-demand
*
* */
Components({
resolvers: [NaiveUiResolver()]
}),
],
clearScreen: false,
envPrefix: ['VITE_', 'TAURI_'],
server: {
port: 5173,
strictPort: true,
},
build: {
outDir: './dist',
// See https://tauri.app/v1/references/webview-versions for details
target: ['es2021', 'chrome100', 'safari13'],
minify: !!!process.env.TAURI_DEBUG,
sourcemap: !!process.env.TAURI_DEBUG,
emptyOutDir: true,
},
test: {
include: ['tests/unit/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
},
})