first commit

This commit is contained in:
Henry Hiles 2023-01-17 10:49:41 -05:00
commit 8d4d27eaf4
13 changed files with 1299 additions and 0 deletions

8
vite.config.js Normal file
View file

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