Skip to content

Commit bd1db19

Browse files
authored
Add index.html to client/public directory for React build
- 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.
1 parent bd6bcad commit bd1db19

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

client/public/index.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>React App</title>
7+
</head>
8+
<body>
9+
<div id="root"></div>
10+
</body>
11+
</html>

0 commit comments

Comments
 (0)