Hi there,
I am trying to deploy a static site. I specified a build command (npm install) and publish directory (./dist) all that works. After npm install is done (and has published everything I need to ./dist) it continues a python build because there is a requirements.txt in the root of the repo (I have both static assets and python code in same repo).
Is there a way to just run the build command I specify and not run any other “automatic” build processes?
Thanks