Skip to content

Commit 616d1d3

Browse files
committed
chore: typescript 환경 셋팅
1 parent 93fde36 commit 616d1d3

File tree

6 files changed

+499
-14
lines changed

6 files changed

+499
-14
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/node_modules
2+
/dist

index.html

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Todo List</title>
7+
<link rel="stylesheet" href="./style.css" />
8+
</head>
39

4-
<head>
5-
<meta charset="UTF-8">
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7-
<title>Todo List</title>
8-
<link rel="stylesheet" href="./style.css">
9-
</head>
10-
11-
<body>
12-
<main id="app"></main>
13-
<script src="./src/main.js" type="module"></script>
14-
</body>
15-
16-
</html>
10+
<body>
11+
<main id="app"></main>
12+
<script src="/dist/main.js" type="module"></script>
13+
</body>
14+
</html>

0 commit comments

Comments
 (0)