I have a React/Vite/Express project on Github. When I import it to Replit from Github, this always gets appended to my .replit file:
[interpreter]
command = ["prybar-nodejs", "-q", "--ps1", "\u0001\u001B[33m\u0002\u0001\u001B[00m\u0002 ", "-i"]
^ That bit overrides the start command I want (run = "npm run build"
)
So, in order to get the project to run on Replit, I need to delete the interpreter section from the .replit file.
What can I do to get everything to work immediately after importing, without having to make any changes in the .replit file?
Thanks in advance