-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
58 lines (57 loc) · 1.54 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
import { ConfigEnv, UserConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { resolve } from 'path'
import Components from 'unplugin-vue-components/vite'
import AutoImport from 'unplugin-auto-import/vite'
import { NaiveUiResolver } from 'unplugin-vue-components/resolvers'
import { viteMockServe } from 'vite-plugin-mock'
// https://vitejs.dev/config/
export default ({ command, mode }: ConfigEnv): UserConfig => {
return {
resolve: {
alias: {
'@': resolve(__dirname, './src'),
},
},
plugins: [
// Vue3单文件组件支持
vue(),
// mock配置
viteMockServe({
mockPath: 'mock',
localEnabled: command === 'serve', // 也可以通过env来设置相应的变量
supportTs: true,
watchFiles: true,
}),
// 组件按需自动导入
Components({
dts: './src/types/components.d.ts', // 生成.d.ts声明文件
resolvers: [NaiveUiResolver()],
}),
// API自动导入
AutoImport({
include: [
/\.[tj]sx?$/, // .ts, .tsx, .js, .jsx
/\.vue$/,
/\.vue\?vue/, // .vue
],
imports: [
// presets
'vue',
'vue-router',
'pinia',
{
'@vueuse/core': [],
axios: [['default', 'axios']],
},
],
dts: './src/types/auto-imports.d.ts',
eslintrc: {
enabled: false,
filepath: './.eslintrc-auto-import.json',
globalsPropValue: true,
},
}),
],
}
}