mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-08-09 10:46:52 +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.
|
- **Enable encryption**: Turn on the `encryptWith` parameter in the WiredTiger storage engine.
|
||||||
|
|
||||||
Example `mongod.conf` file:
|
Example `mongod.conf` file:
|
||||||
```yml
|
|
||||||
|
```yaml
|
||||||
storage:
|
storage:
|
||||||
wiredTiger:
|
wiredTiger:
|
||||||
engineConfig:
|
engineConfig:
|
||||||
|
@@ -46,7 +46,8 @@ function generateBreadcrumbs(topicUrl: string, topicFiles: Record<string, Roadma
|
|||||||
|
|
||||||
const breadcrumbs = breadcrumbUrls.map((breadCrumbUrl): BreadcrumbItem => {
|
const breadcrumbs = breadcrumbUrls.map((breadCrumbUrl): BreadcrumbItem => {
|
||||||
const topicFile = topicFiles[breadCrumbUrl];
|
const topicFile = topicFiles[breadCrumbUrl];
|
||||||
const topicFileContent = topicFile.file;
|
|
||||||
|
const topicFileContent = topicFile?.file;
|
||||||
|
|
||||||
const firstHeading = topicFileContent?.getHeadings()?.[0];
|
const firstHeading = topicFileContent?.getHeadings()?.[0];
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user