Fix typo in PM2 configuration example

According to PM2 documentation, the name of the application is defined
by "name" key, not "title"
This commit is contained in:
M Waheed
2026-01-07 19:04:06 +05:00
committed by GitHub
parent 4c492c66b8
commit bc02c18dc5

View File

@@ -33,7 +33,7 @@ Alternatively, you can create a PM2 configuration file. Create a file named `pm2
```js pm2.config.js icon="file-code" ```js pm2.config.js icon="file-code"
module.exports = { module.exports = {
title: "app", // Name of your application name: "app", // Name of your application
script: "index.ts", // Entry point of your application script: "index.ts", // Entry point of your application
interpreter: "bun", // Bun interpreter interpreter: "bun", // Bun interpreter
env: { env: {