-
Notifications
You must be signed in to change notification settings - Fork 3
/
vite.config.mts
70 lines (66 loc) · 1.55 KB
/
vite.config.mts
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
import type { SemVer } from 'semver'
import { resolve } from 'node:path'
import vue from '@vitejs/plugin-vue'
import { parse } from 'semver'
import { presetAttributify, presetUno } from 'unocss'
import UnoCSS from 'unocss/vite'
import UnpluginUnused from 'unplugin-unused/vite'
import { defineConfig } from 'vite'
import { version } from 'vue'
import { name, PascalCasedName } from './package.json'
const { major, minor } = parse(version) as SemVer
// 路径查找
function pathResolve(dir: string): string {
return resolve(__dirname, '.', dir)
}
// 设置别名
const alias: Record<string, string> = {
'@': pathResolve('demo'),
}
export default defineConfig({
resolve: {
alias,
},
plugins: [
{
name: 'html-transform',
transformIndexHtml(html: string) {
return html.replace(/\{\{ NAME \}\}/, name).replace(/\{\{ VUE_VERSION \}\}/g, String(major === 3 ? major : `${major}.${minor}`))
},
},
UnpluginUnused(),
UnoCSS({
presets: [
presetAttributify(),
presetUno(),
],
}),
vue(),
],
build: {
lib: {
name,
entry: 'src/index.ts',
fileName: 'index',
},
cssCodeSplit: true,
sourcemap: true,
rollupOptions: {
external: [
'vue',
'vue-demi',
'element-ui',
'element-plus',
],
output: {
globals: {
[name]: PascalCasedName,
'vue': 'Vue',
'vue-demi': 'VueDemi',
'element-ui': 'ElementUI',
'element-plus': 'ElementPlus',
},
},
},
},
})