docs: fix typo in docs-introduction (#9267)

This commit is contained in:
Coupy 2023-08-31 19:28:23 +09:00 committed by GitHub
parent 9868babf75
commit a145205848
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,6 +47,7 @@ Assume that you have the following in your configuration:
module.exports = {
// ...
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
@ -58,6 +59,7 @@ module.exports = {
// ...
},
],
],
};
```
@ -67,6 +69,7 @@ To enter docs-only mode, change it to like this:
module.exports = {
// ...
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
@ -79,6 +82,7 @@ module.exports = {
// ...
},
],
],
};
```