Skip to content

Commit d7262a9

Browse files
committed
fixed css and updated nets module.
1 parent b3af18f commit d7262a9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

template/nets.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ function availableNetworks() {
1414
}
1515

1616
function showAvailableNetworks(PORT) {
17-
for (const _ of availableNetworks()) {
18-
console.log(`http://${_}:${PORT}/`)
17+
for (const avnetwork of availableNetworks()) {
18+
console.log(`http://${avnetwork}:${PORT}/`)
1919
}
2020
}
2121

template/views/home.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title></title>
7-
<link href="css/style.css" rel="stylesheet">
7+
<link href="/style.css" rel="stylesheet">
88
</head>
99
<body>
1010
<h1>Hello World!</h1>

0 commit comments

Comments
 (0)