-
Hello,
and after that the tailwindcli gets shut down and does not compile the css, even tough it starts to run correctly. I tried to use AddExecutable or AddNpmApp already, like that:
and our npm script is like that:
running it via Maybe it has something to do with health checks/endpoints, but I have no clue where to start, to make that work |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
That particular log message is from monitor processes that gets launched to ensure service processes are cleaned up if the orchestrator doesn't exit cleanly. That particular message means the service process exited, so the monitor is shutting down. Can you check the dashboard to see what the exit code for the |
Beta Was this translation helpful? Give feedback.
It looks like tailwind automatically stops watching when stdin is closed (and we don't attach stdin to child processes currently). You should be to use
--watch=always
which will keep watching even if there's no stdin.