Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

SetKyarWaLar's avatar

The Mix manifest does not exist on deploying mode only

I use envoyer to deploy my application. And I got The Mix manifest does not exist. error on when my application is in deploying mode. After my application got deployed the error got to disappear.

My Deployment process is...

  • Clone New Release
  • Install Composer Dependencies
  • Migrate, Minify yarn install, npm run production
  • Purge Old Releases

I am wrong on which step to get over that The Mix manifest does not exist. ?

0 likes
2 replies
bobbybouwmann's avatar

Well you use yarnand npm at the same time. You can do this with one of the two

// npm
npm install
npm run production

// yarn
yarn install
yarn production

The production build step should build the manifest file for Mix so that should work fine.

Is this only happening the first time? Or is this happening between deployments?

1 like
SetKyarWaLar's avatar

It's someone else set up. I also think like it was because of those yarn and npm at the same time. I try to change to yarn install and yarn production. It does not work.

The production build step should build the manifest file for Mix so that should work fine.

For the above one. How can I do with Envoyer? Any reference link to try it out?

The error only happening between deployments.

Please or to participate in this conversation.