We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7f97ff commit e8575e9Copy full SHA for e8575e9
content/fundamentals/dynamic-modules.md
@@ -183,6 +183,7 @@ That nicely handles passing an `options` object to our dynamic module. How do we
183
import { Injectable } from '@nestjs/common';
184
import * as dotenv from 'dotenv';
185
import * as fs from 'fs';
186
+import * as path from 'path';
187
import { EnvConfig } from './interfaces';
188
189
@Injectable()
@@ -236,6 +237,7 @@ Now we can complete the process by injecting the `'CONFIG_OPTIONS'` provider int
236
237
```typescript
238
239
240
241
import { Injectable, Inject } from '@nestjs/common';
242
243
0 commit comments