From bf2979e78d677f4138253b0a848795440c229ed5 Mon Sep 17 00:00:00 2001 From: DMehaffy Date: Tue, 5 Dec 2023 02:33:58 -0800 Subject: [PATCH] Fix start file ts example (#1944) --- docusaurus/docs/dev-docs/deployment/process-manager.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docusaurus/docs/dev-docs/deployment/process-manager.md b/docusaurus/docs/dev-docs/deployment/process-manager.md index a4705d5069..da36a7908a 100644 --- a/docusaurus/docs/dev-docs/deployment/process-manager.md +++ b/docusaurus/docs/dev-docs/deployment/process-manager.md @@ -62,9 +62,9 @@ strapi().start(); ```ts title="path: ./server.js" -const strapi = require('@strapi/strapi'); - const app = strapi({ distDir: '' }); - app.start(); +const strapi = require("@strapi/strapi"); +const app = strapi({ distDir: "./dist" }); +app.start(); ```