2 Star 26 Fork 18

编程民工/ uniapp移动端开发框架Vue3.0

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.js 1.63 KB
一键复制 编辑 原始数据 按行查看 历史
编程民工 提交于 2023-12-14 03:46 . Vite 使用 terser 进行缩小
import path from 'path'
import fs from 'fs-extra'
import { defineConfig } from 'vite'
import uni from '@dcloudio/vite-plugin-uni'
import AutoImport from 'unplugin-auto-import/vite'
function copyFile() {
return {
enforce: 'post',
async writeBundle() {
await fs.copy(
path.join(__dirname, '/static_sub'),
path.join(__dirname + '/unpackage/', 'dist', process.env.NODE_ENV === 'production' ? 'build' : 'dev', process.env.UNI_PLATFORM, '/')
)
},
}
}
let filePath = ''
let Timestamp = ''
//编译环境判断,判断是否H5环境
if (process.env.UNI_PLATFORM === 'h5') {
filePath = 'assets/' //打包文件存放文件夹路径
Timestamp = '.' + new Date().getTime()//时间戳
}
export default defineConfig({
plugins: [
uni(),
copyFile(),
AutoImport({
imports:[
// 预设
'vue',
'uni-app',
// 自定义预设
{
'@/store': ['useStore'],
'@/store/modules/theme': ['useThemeStore'],
'@/hooks/useList': ['useList'],
'@/hooks/useTheme': ['useTheme'],
'@/hooks/useShare': ['useShare']
}
]
})
],
build: {
minify: 'terser',
terserOptions: {
compress: {
// 发布时删除 console
drop_console: true,
},
},
rollupOptions: {
output:{ // 输出重构 打包编译后的 文件目录 文件名称 【模块名称.时间戳】
// 入口文件名
entryFileNames: `${filePath}[name]${Timestamp}.js`,
// 块文件名
chunkFilename: `${filePath}[name]${Timestamp}.js`,
// 资源文件名 css 图片等等
assetFileNames: `${filePath}[name]${Timestamp}.[ext]`
}
}
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/yunhaotian/uniapp_mobileFrame_Vue3.git
git@gitee.com:yunhaotian/uniapp_mobileFrame_Vue3.git
yunhaotian
uniapp_mobileFrame_Vue3
uniapp移动端开发框架Vue3.0
master

搜索帮助