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
When starting the dev-env using docker with the following command:
docker compose -f dev-env.yaml up
Occasionally it fails to start with this error message:
frontend-1 |
frontend-1 | > [email protected] dev
frontend-1 | > vite --host
frontend-1 |
frontend-1 | sh: 1: vite: not found
frontend-1 exited with code 127
I have found that fixing it requires installing vite on the host machine in order to ensure that it appears in node_modules. This doesn't seem right to me (the docker container should be able to install vite from scratch within the container itself)
The text was updated successfully, but these errors were encountered:
When starting the dev-env using docker with the following command:
Occasionally it fails to start with this error message:
I have found that fixing it requires installing vite on the host machine in order to ensure that it appears in
node_modules
. This doesn't seem right to me (the docker container should be able to install vite from scratch within the container itself)The text was updated successfully, but these errors were encountered: