You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm looking for an alternative how to run next binary without calling yarn, so e.g. I'm trying to avoid calling yarn run next start (because I cannot access yarn in pm2 cluster mode).
I'm able to run a custom script without yarn using
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm looking for an alternative how to run
next
binary without callingyarn
, so e.g. I'm trying to avoid callingyarn run next start
(because I cannot access yarn in pm2 cluster mode).I'm able to run a custom script without yarn using
NODE_OPTIONS="--require $(pwd)/.pnp.cjs --experimental-loader file://$(pwd)/.pnp.loader.mjs" node ./myscript.js
How can I run a
next
binary in a similar way?Beta Was this translation helpful? Give feedback.
All reactions