We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3af18f commit d7262a9Copy full SHA for d7262a9
template/nets.js
@@ -14,8 +14,8 @@ function availableNetworks() {
14
}
15
16
function showAvailableNetworks(PORT) {
17
- for (const _ of availableNetworks()) {
18
- console.log(`http://${_}:${PORT}/`)
+ for (const avnetwork of availableNetworks()) {
+ console.log(`http://${avnetwork}:${PORT}/`)
19
20
21
template/views/home.ejs
@@ -4,7 +4,7 @@
4
<meta charset="UTF-8">
5
<meta name="viewport" content="width=device-width, initial-scale=1">
6
<title></title>
7
- <link href="css/style.css" rel="stylesheet">
+ <link href="/style.css" rel="stylesheet">
8
</head>
9
<body>
10
<h1>Hello World!</h1>
0 commit comments