Reputation: 1
Previous EB UI provide a 'Command Box' to allow us override the initial command. But now the new UI I just cannot find this field anywhere.
I am using NodeJS EB platform.
Or is there any way to run the pnpm start instead of npm start through the .ebextension?
Upvotes: 0
Views: 435
Reputation: 2558
Try adding Procfile
in root directory with content:
web: pnpm start
See also official documentation.
Upvotes: 0