Added files of the Todo app

This commit is contained in:
Diven2510
2025-12-30 19:37:10 +05:30
parent 387812c33e
commit bab99095d7
31 changed files with 6803 additions and 0 deletions

10
Frontend/vite.config.js Normal file
View File

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