initialize the app

This commit is contained in:
ajaythapliyal
2023-02-07 23:27:21 +05:30
parent f6c97b52b1
commit 5d281ad01b
16 changed files with 1637 additions and 1 deletions

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