Fixed running concurrently backend & frontend

Added Site title to index.html
This commit is contained in:
2025-09-28 19:22:50 +02:00
parent 08f41b6bb3
commit 320a3a8eb0
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
<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>ALUXPAY - Payment Gateway</title>
<title>%VITE_REACT_APP_STORE_NAME% - Payment Gateway</title>
</head>
<body>
<div id="root"></div>

View File

@@ -6,7 +6,7 @@
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd backend && npm run dev",
"client": "cd frontend && npm start",
"client": "cd frontend && npm run dev",
"build": "cd frontend && npm run build",
"start": "cd backend && npm start",
"install-all": "npm install && cd backend && npm install && cd ../frontend && npm install"