feat: 项目初始化。

This commit is contained in:
tianyongbao
2025-12-18 22:11:37 +08:00
parent 22c072a957
commit e41581f26b
633 changed files with 90998 additions and 0 deletions

21
vite.config.js Normal file
View File

@@ -0,0 +1,21 @@
import { defineConfig } from 'vite'
import uni from '@dcloudio/vite-plugin-uni'
export default defineConfig(() => {
return {
base: './',
build: {
minify: true,
outDir: 'dist',
},
server: {
port: '8081'
},
plugins: [
uni()
],
exclude:[
/\/README\.md$/,
]
}
})