Skip to content

Commit 341dfd2

Browse files
Merge pull request #3130 from BigBatty/patch-1
docs(deployment): Fixed type on deployment.md for mau
2 parents e7652d9 + 06b6eae commit 341dfd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ To build your NestJS application, you need to compile your TypeScript code into
2222
$ npm run build
2323
```
2424

25-
This command typically runs the `nest build` command and other the hood, which is basically a wrapper around the TypeScript compiler with some additional features (assets copying, etc.). In case you have a custom build script, you can run it directly. Also, for NestJS CLI mono-repos, make sure to pass the name of the project to build as an argument (`npm run build my-app`).
25+
This command typically runs the `nest build` command under the hood, which is basically a wrapper around the TypeScript compiler with some additional features (assets copying, etc.). In case you have a custom build script, you can run it directly. Also, for NestJS CLI mono-repos, make sure to pass the name of the project to build as an argument (`npm run build my-app`).
2626

2727
Upon successful compilation, you should see a `dist` directory in your project root containing the compiled files, with the entry point being `main.js`. If you have any `.ts` files located in the root directory of your project (and your `tsconfig.json` configured to compile them), they will be copied to the `dist` directory as well, modifying the directory structure a bit (instead of `dist/main.js`, you will have `dist/src/main.js` so keep that in mind when configuring your server).
2828

0 commit comments

Comments
 (0)