Skip to content

Commit 8e0160b

Browse files
committed
vite
1 parent b16474a commit 8e0160b

28 files changed

+2314
-19241
lines changed

web/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
# production
1212
/build
13+
/dist
1314

1415
# misc
1516
.DS_Store

web/index.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="utf-8" />
6+
<link rel="icon" href="/assets/favicon.ico" />
7+
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
8+
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
9+
<meta name="viewport" content="width=device-width, initial-scale=1" />
10+
<meta name="theme-color" content="#000000" />
11+
<meta name="description" content="Web site created using create-react-app" />
12+
<link rel="stylesheet" href="/style.css" />
13+
<link rel="stylesheet" href="/assets/style.css" />
14+
<link rel="manifest" href="/manifest.json" />
15+
<title>CS2 2D Demo Player</title>
16+
</head>
17+
18+
<body>
19+
<noscript>You need to enable JavaScript to run this app.</noscript>
20+
<div id="root"></div>
21+
<script type="module" src="/src/index.jsx"></script>
22+
</body>
23+
24+
</html>

0 commit comments

Comments
 (0)