1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-03-18 06:10:10 +01:00

Fix broken build

This commit is contained in:
Kamran Ahmed 2023-03-28 15:47:14 +01:00
parent 9370e262c0
commit db273210fd
2 changed files with 4 additions and 2 deletions

View File

@ -31,7 +31,8 @@ To enable encryption at rest in MongoDB, you have to perform the following steps
- **Enable encryption**: Turn on the `encryptWith` parameter in the WiredTiger storage engine.
Example `mongod.conf` file:
```yml
```yaml
storage:
wiredTiger:
engineConfig:

View File

@ -46,7 +46,8 @@ function generateBreadcrumbs(topicUrl: string, topicFiles: Record<string, Roadma
const breadcrumbs = breadcrumbUrls.map((breadCrumbUrl): BreadcrumbItem => {
const topicFile = topicFiles[breadCrumbUrl];
const topicFileContent = topicFile.file;
const topicFileContent = topicFile?.file;
const firstHeading = topicFileContent?.getHeadings()?.[0];