-
Notifications
You must be signed in to change notification settings - Fork 29
/
vite.config.js
47 lines (46 loc) · 1.05 KB
/
vite.config.js
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
import { defineConfig } from 'vite'
import uni from '@dcloudio/vite-plugin-uni'
import path from 'path'
import AutoImport from 'unplugin-auto-import/vite'
import h5ProdEffectPlugin from 'uni-vite-plugin-h5-prod-effect'
import legacy from '@vitejs/plugin-legacy'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
uni(),
AutoImport({
imports: [
'vue',
'uni-app'
],
dirs: [
'src/utils',
'src/wxs/**'
],
dts: 'src/auto-imports.d.ts',
eslintrc: {
enabled: true
}
}),
// 对h5 production环境打包时的特殊处理,否则uni-crazy-router在这个环境会异常
h5ProdEffectPlugin()
].concat(process.env.UNI_PLATFORM === 'h5' ? [
legacy({
// 兼容浏览器列表
targets: ['Android >= 7', 'chrome >= 51', 'firefox >= 54', 'ios >= 10']
})
] : []),
resolve: {
alias: {
'@': path.resolve(__dirname, 'src')
}
},
server: {
host: true,
port: 80,
open: true
},
build: {
minify: 'terser'
}
})