initial commit

This commit is contained in:
2024-09-14 21:04:16 +08:00
commit 000eb1c790
17 changed files with 9224 additions and 0 deletions

15
vite.config.ts Normal file
View File

@ -0,0 +1,15 @@
import { defineConfig } from "vite";
import uni from "@dcloudio/vite-plugin-uni";
// https://vitejs.dev/config/
export default defineConfig(async () => {
const UnoCSS = await import("unocss/vite").then((i) => i.default);
return {
plugins: [
uni(),
// https://github.com/unocss/unocss
UnoCSS(),
],
};
});