switched to vite instead of create-react-app to stayed updated in packages

This commit is contained in:
Carter 2024-10-21 14:32:25 -06:00
parent f1b0b6286b
commit 7fe654a0e5
20 changed files with 1526 additions and 17864 deletions

7
vite.config.ts Normal file
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()],
})