-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
62 lines (60 loc) · 1.5 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
import path from 'path'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
export default defineConfig(({ mode }) => {
const common = {
plugins: [
vue(),
vueJsx(),
AutoImport({
include: [
/\.[tj]sx?$/, // .ts, .tsx, .js, .jsx
/\.vue$/,
],
imports: ['vue'],
dirs: [],
resolvers: [ElementPlusResolver()],
}),
Components({
include: [/\.vue$/, /\.vue\?vue/, /\.tsx$/],
resolvers: [
ElementPlusResolver({
importStyle: 'sass',
}),
],
}),
],
resolve: {
alias: {
'~': path.resolve('./packages'),
'#': path.resolve('./typings'),
},
},
base: mode === 'production' ? '/el-plus-powerful-table/' : '/',
// 控制台打印
// logLevel: "silent",
server: {
hmr: {
overlay: false,
},
host: '0.0.0.0',
port: 3001,
// 是否自动在浏览器打开
open: false,
// 是否开启 https
https: false,
proxy: {
// '/api': {
// target: 'https://blog.csdn.net/weixin_45292658',
// changeOrigin: true,
// rewrite: path => path.replace(/^\/api/, '')
// }
},
},
}
return common
})