first commit

This commit is contained in:
2025-04-17 14:39:00 +03:30
commit b78ab7d539
60 changed files with 4719 additions and 0 deletions

26
vite.config.ts Normal file
View File

@@ -0,0 +1,26 @@
import path from "path";
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
build: {
rollupOptions: {
output: {
manualChunks(id) {
if (id.includes('node_modules')) {
// Create separate chunk for vendor libraries
return 'vendor';
}
},
},
},
chunkSizeWarningLimit: 600, // Adjust if needed
},
});