init the repository via npm create vite

This commit is contained in:
WanCW 2025-04-25 17:30:46 +08:00
commit a3f411a088
Signed by: wancw
GPG key ID: 1A22F8C8D1877952
12 changed files with 273 additions and 0 deletions

7
vite.config.js Normal file
View file

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