I'm trying to deploy the static website to Heroku and I struggle how to correctly setup the Procfile.
I have next command to run on the server:
npm installgulp build(will make a build with/publicfolder)http-server(will serve/publicby default)
What I've tried:
web: npm install; gulp build; http-serverweb: npm install & gulp build & http-server