cor...@free.fr (12023-03-16): > nohup serve -s /home/myUsername/workspace/xxx-frontend/build &
What Greg said. Plus: Never use nohup. nohup should never have been invented, it is based on a complete lack of understanding of how sessions and control terminal work. Instead: - use setsid to detach the process from the session; - explicitly redirect the input and outputs where you want them. Regards, -- Nicolas George