Skip to content

Commit b6dc807

Browse files
Merge pull request #3051 from soorajb/patch-1
fix app module path in repl.md
2 parents abdf6b4 + b5937d8 commit b6dc807

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/recipes/repl.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ To run your NestJS application in REPL mode, create a new `repl.ts` file (alongs
1010
```typescript
1111
@@filename(repl)
1212
import { repl } from '@nestjs/core';
13-
import { AppModule } from './app.module';
13+
import { AppModule } from './src/app.module';
1414

1515
async function bootstrap() {
1616
await repl(AppModule);
1717
}
1818
bootstrap();
1919
@@switch
2020
import { repl } from '@nestjs/core';
21-
import { AppModule } from './app.module';
21+
import { AppModule } from './src/app.module';
2222

2323
async function bootstrap() {
2424
await repl(AppModule);

0 commit comments

Comments
 (0)