Browse Source

Update ecosystem configuration to change start script for application

- Modified the start script in ecosystem.config.js from "yarn" to "./node_modules/.bin/next" to ensure the application starts correctly using the Next.js framework.
0es 4 months ago
parent
commit
2689c75beb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ecosystem.config.js

+ 1 - 1
ecosystem.config.js

@@ -2,7 +2,7 @@ module.exports = {
   apps: [
     {
       name: "gami-op",
-      script: "yarn",
+      script: "./node_modules/.bin/next",
       args: "start",
       cwd: "./",
       instances: "max",