رفع الملفات إلى "frontend"

هذا الالتزام موجود في:
2026-01-16 22:55:58 +00:00
الأصل 6b3be4457e
التزام 594ef963ad
5 ملفات معدلة مع 4632 إضافات و0 حذوفات

13
frontend/index.html Normal file
عرض الملف

@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Database Migrator</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>

4563
frontend/package-lock.json مولّد Normal file

تم حذف اختلاف الملف لأن الملف كبير جداً تحميل الاختلاف

31
frontend/package.json Normal file
عرض الملف

@@ -0,0 +1,31 @@
{
"name": "universal-migrator-ui",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.23",
"eslint": "^8.45.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"vite": "^4.4.5"
}
}

عرض الملف

@@ -0,0 +1,6 @@
export default {
plugins: {
'@tailwindcss/postcss': {},
autoprefixer: {},
},
}

19
frontend/vite.config.js Normal file
عرض الملف

@@ -0,0 +1,19 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
build: {
outDir: '../dist', // البناء ينتج مجلد dist خارج frontend
emptyOutDir: true
},
server: {
proxy: {
'/api': {
target: 'http://localhost:8001',
changeOrigin: true
}
}
}
});