This commit is contained in:
wtq
2025-11-14 10:30:53 +08:00
commit 6bc72db0ee
348 changed files with 53952 additions and 0 deletions

8
vite.config.ts Normal file
View File

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