mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-07-31 14:30:13 +02:00
Fix broken build
This commit is contained in:
@@ -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:
|
||||
|
@@ -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];
|
||||
|
||||
|
Reference in New Issue
Block a user