-
Notifications
You must be signed in to change notification settings - Fork 160
/
vite.config.ts
139 lines (138 loc) · 4.33 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
// https://vitejs.dev/config/
import { defineConfig, loadEnv } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import * as path from 'path'
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
import Inspect from 'vite-plugin-inspect'
import Icons from 'unplugin-icons/vite'
import IconsResolver from 'unplugin-icons/resolver'
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
import viteCompression from 'vite-plugin-compression'
import VueTypeImports from 'vite-plugin-vue-type-imports'
import * as fs from 'fs'
import filePathInject from './plugins/vite-plugin-filepath-injector'
export default defineConfig((config) => ({
plugins: [
filePathInject(),
vue({
// 开启响应式语法糖
reactivityTransform: true,
}),
viteCompression(), // gzip压缩
vueJsx(), // 引入 svg
createSvgIconsPlugin({
// Specify the icon folder to be cached
iconDirs: [path.resolve(process.cwd(), 'src/icons/svg')], // 所有的 svg的文件都存放在该文件夹下
symbolId: 'icon-[name]',
}),
Icons({
compiler: 'vue3',
defaultStyle: 'font-size: 16px;',
}),
// Api自动导入
AutoImport({
dts: true,
// 目标文件
include: [
/\.[tj]sx?$/, // .ts, .tsx, .js, .jsx
/\.vue$/,
/\.vue\?vue/, // .vue
],
// 全局引入插件
imports: ['vue', 'vue-router'],
resolvers: [
// 自动导入Element-Plus的Api
ElementPlusResolver(),
// 自动导入图标组件
// 自动导入必须遵循名称格式 {prefix:默认为i}-{collection:图标集合的名称}-{icon:图标名称}
IconsResolver({
// enabledCollections: ['ep'],
extension: 'vue',
}),
],
exclude: config.mode === 'development' ? [/vision\/vision_wasm_internal\.js/] : null,
// eslint报错解决方案
eslintrc: {
enabled: true, // Default `false`
filepath: './.eslintrc-auto-import.json', // Default `./.eslintrc-auto-import.json`
globalsPropValue: true, // Default `true`, (true | false | 'readonly' | 'readable' | 'writable' | 'writeable')
},
}),
// 按需导入组件
Components({
dts: true, // enabled by default if `typescript` is installed
include: [
/\.[tj]sx?$/, // .ts, .tsx, .js, .jsx
/\.vue$/,
/\.vue\?vue/, // .vue
],
resolvers: [
// 自动注册图标组件
IconsResolver({
extension: 'vue',
// enabledCollections: ['ep'],
}),
// 自动导入 Element Plus 组件
ElementPlusResolver(),
],
}),
Inspect(),
],
// 服务器特定选项,如主机、端口、https…
server: {
host: '0.0.0.0',
https: {
key: fs.readFileSync(`${__dirname}/localhost-key.pem`),
cert: fs.readFileSync(`${__dirname}/localhost.pem`),
},
// https: true,
port: 54321,
open: false,
proxy: {
'/api': {
target: loadEnv(config.mode, process.cwd()).VITE_APP_BASE_API,
changeOrigin: true,
rewrite: (pathStr) => pathStr.replace(/^\/api/, ''),
},
},
},
// 配置解析器
resolve: {
// 设置别名
alias: [{ find: '@', replacement: path.resolve(__dirname, 'src') }],
extensions: ['.ts', '.js', 'tsx'],
},
// 预处理器和Css模块
css: {
// css预处理器
preprocessorOptions: {
scss: {
// 给含有中文的scss文件添加 @charset:UTF-8;
charset: false,
// 在全局中使用 index.scss中预定义的变量
additionalData: '@import "./src/styles/variable.scss";@import "./src/styles/element.scss";',
},
},
// 暂时移除,会导致 tailwind css 无法使用
// postcss: {
// plugins: [
// {
// // 通过postcss删除组件库中 scss 文件的 @charset:UTF-8
// postcssPlugin: 'internal:charset-removal',
// AtRule: {
// charset: (atRule) => {
// if (atRule.name === 'charset') {
// atRule.remove()
// }
// },
// },
// },
// ],
// },
},
// 热更新时,清空控制台
clearScreen: true,
}))