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 install
gulp build
(will make a build with/public
folder)http-server
(will serve/public
by default)
What I've tried:
web: npm install; gulp build; http-server
web: npm install & gulp build & http-server