We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ba3b45 commit 4bf3c74Copy full SHA for 4bf3c74
src/bin.ts
@@ -120,6 +120,7 @@ if (process.env['NODE_ENV'] !== 'production') {
120
121
app.listen(port, () => {
122
console.log(`Started on :${port}`)
123
- console.log(`Watching ${file}...`)
+ console.log(`http://localhost:${port}/`)
124
console.log(routes(db).join('\n'))
125
+ console.log(`Watching ${file}...`)
126
})
views/index.html
@@ -7,7 +7,7 @@
7
<link href="/output.css" rel="stylesheet" />
8
</head>
9
10
-<body class="container mx-auto prose pt-6 bg-white text-gray-900">
+<body class="container mx-auto prose dark:prose-invert dark:bg-slate-900 pt-6 bg-white text-slate-900">
11
<header>
12
<nav class="mx-auto flex items-center justify-between">
13
<strong>JSON Server {:.:}</strong>
0 commit comments