feat: initial commit

This commit is contained in:
Menci
2026-01-01 03:40:41 +08:00
commit 631f8ed771
98 changed files with 14776 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { defineConfig } from 'vite'
import UnoCSS from 'unocss/vite'
import react from '@vitejs/plugin-react'
import topLevelAwait from 'vite-plugin-top-level-await'
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), UnoCSS(), topLevelAwait()],
build: {
assetsInlineLimit: 0,
minify: true
},
})