feat: 初始化版本!

This commit is contained in:
tianyongbao
2024-05-31 13:08:46 +08:00
parent 884a84802d
commit b3fe699735
587 changed files with 103758 additions and 27 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$/,
]
}
})