initial, express-typescript config, react-vite created

This commit is contained in:
Mikayla Dobson
2022-11-17 11:17:20 -06:00
commit 31995bde8e
38 changed files with 5678 additions and 0 deletions

7
client/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()]
})