I have a problem trying to deploy my app. I recognize is quite tricky but it's the best solution I found to have the structure I need.
My app it's a Vite/ReactJS app and it runs perfectly, but I need to create a blog so I decide to create a solution with Astro inside my Vite/ReactJS app.
So my structure looks like a tipical ReactJS app but I created a /blog folder with a Astro project and I modified my build script and looks like this
"build": "vite build && cd blog && npm run build"
vite build works fine but I have a problem with Astro
24.63 sh: 1: astro: not found
24.66 error Command failed with exit code 127.
24.66 info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
Looks like astro build it's not working. I try to add engine: 18 on my package.json but it doesn't works.
Thanks for your help and patience
