Deploy an Angular CLI Project to now.sh

Bram Borggreve
InstructorBram Borggreve
Share this video with your friends

Social Share Links

Send Tweet

In this lesson we will add support for deploying our application to now.sh.

We will create a now object in package.json where we configure the name, the alias and the list of files we want to deploy.

We create an npm run-script called now-build and set the value to true to skip building the project on now.sh. The second run-script called now invokes now deploy && now alias.

After this we sun npm run build && npm run now to build and deploy our app!