-
Notifications
You must be signed in to change notification settings - Fork 149
/
vite.config.ts
38 lines (36 loc) · 898 Bytes
/
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
import { fileURLToPath, URL } from 'node:url'
import { resolve } from 'path'
import { defineConfig } from 'vite'
import type { UserConfigExport } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig((env) => {
const defaultConfig: UserConfigExport = {
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./examples', import.meta.url))
}
}
}
// 当执行 pnpm lib 设置环境变量 --mode lib 时
if (env.mode === 'lib') {
defaultConfig.build = {
cssCodeSplit: false,
lib: {
entry: resolve(__dirname, 'packages/main.ts'),
name: 'vcolorpicker',
fileName: 'vcolorpicker'
},
rollupOptions: {
external: ['vue'],
output: {
globals: {
vue: 'Vue'
},
dir: 'lib'
}
}
}
}
return defaultConfig
})