Skip to content

Commit fbd9000

Browse files
committed
Fixed relative paths
1 parent 492c038 commit fbd9000

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
# Node artifact files
1010
node_modules/
1111

12+
# eslint
13+
.eslintrc.js
14+
.eslintignore
15+
1216
# vscode
1317
.vscode
1418

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"build": "rollup -c",
66
"dev": "rollup -c -w",
77
"start": "sirv public",
8-
"deploy": "echo deploy",
8+
"deploy": "npm run build && git subtree push --prefix public origin gh-pages",
99
"lint": "npx install-peerdeps --dev eslint-config-wesbos"
1010
},
1111
"devDependencies": {

public/build/bundle.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width,initial-scale=1" />
66

7-
<title>ID311 Code Examples</title>
7+
<title>The Geography of UIST</title>
88

9-
<link rel="icon" type="image/png" href="/favicon.png" />
10-
<link rel="stylesheet" href="/global.css" />
11-
<link rel="stylesheet" href="/build/bundle.css" />
9+
<link rel="icon" type="image/png" href="./favicon.png" />
10+
<link rel="stylesheet" href="./global.css" />
11+
<link rel="stylesheet" href="./build/bundle.css" />
1212

13-
<script defer src="/build/bundle.js"></script>
13+
<script defer src="./build/bundle.js"></script>
1414
</head>
1515

1616
<body></body>

0 commit comments

Comments
 (0)