Skip to content

Commit 610eae4

Browse files
committed
adding dist dir
1 parent dc7a933 commit 610eae4

File tree

5 files changed

+28
-2
lines changed

5 files changed

+28
-2
lines changed

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ out
107107

108108
# Nuxt.js build / generate output
109109
.nuxt
110-
dist
110+
# dist
111111

112112
# Gatsby files
113113
.cache/
@@ -138,4 +138,4 @@ dist
138138
.yarn/unplugged
139139
.yarn/build-state.yml
140140
.yarn/install-state.gz
141-
.pnp.*
141+
.pnp*

dist/bundle.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/style.css

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
body {
2+
margin: 0;
3+
display: flex;
4+
5+
/* This centers our sketch horizontally. */
6+
justify-content: center;
7+
8+
/* This centers our sketch vertically. */
9+
align-items: center;
10+
}
99.1 KB
Loading

dist/index.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7+
8+
<!-- Css -->
9+
<link rel="stylesheet" type="text/css" href="./css/style.css">
10+
11+
<!-- js Libraries -->
12+
<script type="module" src="./bundle.js"></script>
13+
</head>
14+
15+
</html>

0 commit comments

Comments
 (0)