This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 176
/
vite.config.ts
66 lines (66 loc) · 1.89 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
import { defineConfig, UserConfigExport } from 'vite';
import vue from '@vitejs/plugin-vue';
import { resolve } from 'path';
import eslintPlugin from 'vite-plugin-eslint';
import WindiCSS from 'vite-plugin-windicss';
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons';
// https://vitejs.dev/config/
export default defineConfig(({ mode }) => {
let config: UserConfigExport = {
plugins: [
vue(),
eslintPlugin({
cache: false,
include: ['src/**/*.vue', 'src/**/*.ts', 'src/**/*.tsx'] // 检查的文件
}),
WindiCSS(),
createSvgIconsPlugin({
// 指定需要缓存的图标文件夹
iconDirs: [
resolve(process.cwd(), 'src/assets/svgs'),
resolve(process.cwd(), 'src/assets/icons')
],
// 指定symbolId格式
symbolId: 'svg-[name]',
// 禁用压缩 否则想要修改无状态组件的stroke或者fill会影响到预设样式 例如stroke-width
svgoOptions: false,
customDomId: '__webtopo__svgedit__icons__dom__'
})
],
resolve: {
alias: {
'@': resolve(__dirname, 'src')
}
},
optimizeDeps: {
entries: ['demo-module.html']
}
};
if (mode === 'lib') {
config = {
...config,
...{
build: {
lib: {
entry: resolve(__dirname, 'src/export.ts'),
name: 'WebtopoYLM',
fileName: `webtopo-svg-edit`
},
rollupOptions: {
// 确保外部化处理那些你不想打包进库的依赖
external: ['vue', 'pinia'],
output: {
// 在 UMD 构建模式下为这些外部化的依赖提供一个全局变量
globals: {
vue: 'Vue',
pinia: 'Pinia'
},
inlineDynamicImports: true
}
}
}
}
};
}
return config;
});