Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

Commit

Permalink
Fix Redis example syntax
Browse files Browse the repository at this point in the history
Added one missing `,` and removed one unnecessary comma in the Redis example, causing at least syntax highlighting not to work. Now it is also copy&pastable again.
  • Loading branch information
cedWetzel committed Nov 11, 2022
1 parent 0818a6a commit a5189a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/content/2.guide/2.directory-structure/1.server.md
Expand Up @@ -264,8 +264,8 @@ export default defineNuxtConfig({
host: "127.0.0.1", // Redis host
username: "", // needs Redis >= 6
password: "",
db: 0 // Defaults to 0
tls: {}, // tls/ssl
db: 0, // Defaults to 0
tls: {} // tls/ssl
}
}
}
Expand Down

0 comments on commit a5189a2

Please sign in to comment.