feat: 初次提交

This commit is contained in:
joey
2025-12-23 12:09:12 +08:00
commit 841d050180
22 changed files with 6123 additions and 0 deletions

8
vite.config.js Normal file
View File

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