install react vite

This commit is contained in:
sindhu
2023-11-06 09:43:35 +07:00
parent 6bb982344f
commit 1afbcd0bda
16 changed files with 3260 additions and 0 deletions

View File

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