Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
vite.config.js 813 Bytes
Copy Edit Raw Blame History
哎哟嘿 authored 2023-11-09 14:50 . vue3框架
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'
// 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()
],
server: {
host: true,
port: 80,
open: true
},
resolve: {
alias: {
'@': path.resolve(__dirname, 'src')
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化