Initial React app setup with Vite

This commit is contained in:
Derek Holodak
2025-08-17 12:03:51 -04:00
parent 4eae0b4a6e
commit 76b063a264
13 changed files with 3307 additions and 1 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()],
})