From bc02c18dc57e7acd7084312a80006b0c37bff232 Mon Sep 17 00:00:00 2001 From: M Waheed Date: Wed, 7 Jan 2026 19:04:06 +0500 Subject: [PATCH] Fix typo in PM2 configuration example According to PM2 documentation, the name of the application is defined by "name" key, not "title" --- docs/guides/ecosystem/pm2.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/ecosystem/pm2.mdx b/docs/guides/ecosystem/pm2.mdx index 70d4242b06..31a401c34b 100644 --- a/docs/guides/ecosystem/pm2.mdx +++ b/docs/guides/ecosystem/pm2.mdx @@ -33,7 +33,7 @@ Alternatively, you can create a PM2 configuration file. Create a file named `pm2 ```js pm2.config.js icon="file-code" module.exports = { - title: "app", // Name of your application + name: "app", // Name of your application script: "index.ts", // Entry point of your application interpreter: "bun", // Bun interpreter env: {