From 4db8ded2f2782a7c28ec05035e9ed64a8282d75f Mon Sep 17 00:00:00 2001 From: Pedro Queiroz Date: Mon, 24 May 2021 06:37:30 -0300 Subject: [PATCH] docs(v2): fix missing closing bracket (#4837) * fix: missing closing bracket * fix: missing closing bracket --- website/docs/api/themes/theme-configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/api/themes/theme-configuration.md b/website/docs/api/themes/theme-configuration.md index fc5cac2ce6..e5ac83a523 100644 --- a/website/docs/api/themes/theme-configuration.md +++ b/website/docs/api/themes/theme-configuration.md @@ -14,7 +14,7 @@ The classic theme provides by default light and dark mode support, with a navbar It is possible to customize the color mode support with the following configuration: -```js {6-35} title="docusaurus.config.js" +```js {6-36} title="docusaurus.config.js" module.exports = { // ... themeConfig: { @@ -183,7 +183,7 @@ You can add a logo and title to the navbar via `themeConfig.navbar`. Logo can be To improve dark mode support, you can also set a different logo for this mode. -```js {5-11} title="docusaurus.config.js" +```js {5-12} title="docusaurus.config.js" module.exports = { // ... themeConfig: {