Init repo

This commit is contained in:
Xevion
2022-11-24 19:13:02 -06:00
commit 7298ae0945
9 changed files with 1487 additions and 0 deletions

8
vite.config.ts Normal file
View File

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