Skip to content

Commit bf2979e

Browse files
Fix start file ts example (#1944)
1 parent b3581b7 commit bf2979e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docusaurus/docs/dev-docs/deployment/process-manager.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ strapi().start();
6262
<TabItem value="typescript" label="TypeScript">
6363

6464
```ts title="path: ./server.js"
65-
const strapi = require('@strapi/strapi');
66-
const app = strapi({ distDir: '<path_to_your_out_dir>' });
67-
app.start();
65+
const strapi = require("@strapi/strapi");
66+
const app = strapi({ distDir: "./dist" });
67+
app.start();
6868
```
6969

7070
</TabItem>

0 commit comments

Comments
 (0)