Update package dependencies, enhance localization, and refactor App component. Added new dependencies for improved state management and UI interactions. Streamlined i18n configuration and integrated path aliases for better module resolution. Adjusted Tailwind CSS configuration to include new screen sizes and optimized component structure for clarity and performance.

This commit is contained in:
2026-04-21 17:21:39 +05:00
parent 3c0f556503
commit 68b4ce1a8d
90 changed files with 8104 additions and 1492 deletions
+6
View File
@@ -1,3 +1,4 @@
import path from "node:path";
import { defineConfig, loadEnv } from "vite";
import react from "@vitejs/plugin-react-swc";
@@ -7,6 +8,11 @@ export default defineConfig(({ mode }) => {
return {
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
server: {
port: 5001,
proxy: {