Skip to content

Commit b3824e6

Browse files
committed
feat(web-server): set up web server with react and vite
1 parent 6a54dac commit b3824e6

File tree

13 files changed

+2779
-0
lines changed

13 files changed

+2779
-0
lines changed

web-server/.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Dependencies
2+
node_modules/
3+
4+
# Build outputs
5+
dist/
6+
7+
# Vite cache
8+
.vite/
9+
10+
# UI template
11+
ui-template/

web-server/index.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!doctype html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>PeerPrep</title>
8+
</head>
9+
10+
<body>
11+
<div id="root"></div>
12+
<script type="module" src="/src/main.tsx"></script>
13+
</body>
14+
15+
</html>

0 commit comments

Comments
 (0)