tmerclub-uniapp/vite.config.js
2025-03-20 13:59:39 +08:00

48 lines
1.1 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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'
}
})