Initial commit: Project setup with .gitignore

This commit is contained in:
Your Name
2025-05-14 22:10:43 +08:00
commit 75bbcc04aa
13 changed files with 425 additions and 0 deletions

8
vite.config.js Normal file
View File

@@ -0,0 +1,8 @@
import { defineConfig } from 'vite'
import uni from '@dcloudio/vite-plugin-uni'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
uni(),
],
})