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:
parent
9370e262c0
commit
db273210fd
@ -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];
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user