-
-
Notifications
You must be signed in to change notification settings - Fork 483
/
vite.config.ts
52 lines (49 loc) · 1.3 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
import { loadEnv } from 'vite'
import type { UserConfig, ConfigEnv } from 'vite'
import * as path from 'path'
import createVitePlugins from './src/plugins/vite'
import wrapperEnv from './src/utils/env'
// https://vitejs.dev/config/
export default ({ command, mode }: ConfigEnv): UserConfig => {
const root = process.cwd()
const env = loadEnv(mode, root)
const isBuild = command === 'build'
// loadEnv 中返回的是 string 类型的(即使是 boolean),使用 wrapperEnv() 转换正确的类型
const viteEnv = wrapperEnv(env)
return {
plugins: createVitePlugins(viteEnv, isBuild),
resolve: {
alias: [
{
find: '@',
replacement: '/src'
},
{
find: 'vue-i18n',
replacement: 'vue-i18n/dist/vue-i18n.cjs.js'
}
]
},
css: {
preprocessorOptions: {
stylus: {
// 引入 variables.styl 文件
imports: [path.resolve(__dirname, 'src/styles/variables.styl')],
// 定义全局变量
additionalData: `
$picx-primary-color = #4975c6
`
}
}
},
base: './', // 设置打包路径
optimizeDeps: {
exclude: ['@yireen/squoosh-browser']
},
server: {
port: 4000,
open: true,
cors: true
}
}
}