Skip to content

Commit

Permalink
Add index.html to client/public directory for React build
Browse files Browse the repository at this point in the history
- Placed index.html in the client/public directory to serve as the entry point for the React application.
- Resolves the issue in the build process where react-scripts could not locate the required index.html file.
- Ensures the React app can be built and deployed successfully.

This addition allows the React build process to complete without errors in the GitHub Actions workflow.
  • Loading branch information
KazerL authored Nov 15, 2024
1 parent bd6bcad commit bd1db19
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions client/public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>React App</title>
</head>
<body>
<div id="root"></div>
</body>
</html>

0 comments on commit bd1db19

Please sign in to comment.