Deploy a Vue application.

Vue is a progressive JavaScript framework for building user interfaces. A core principle of Vue is incremental adoption: this makes it easy to build Vue applications that live side-by-side with your existing code.

In this guide, you will create a new Vue application and deploy it using YouAppz Sitez. You will use vue-cli, a batteries-included tool for generating new Vue applications.

Setting up a new project

First, install the Vue CLI using NPM, and then run vue create in your terminal to create a new project called my-vue-app:

$ npm install -g @vue/cli
$ vue create my-vue-app

Deploying with Youappz Sitez

Deploy your site to Sitez by running the following commands

cd my-vue-app
appz create -n my-vue-app
appz deploy -d dist

In less than 30 seconds your website will be deployed to an https URL on our global CDN.

For the complete guide to deploying your first site to YouAppz Sitez, refer to the Get started guide.

After deploying your site, you will receive a unique subdomain for your project on *.sitez.live. Every time you deploy your Gatsby site, Youappz Sitez will automatically rebuild your project and deploy it. You will also get access to preview deployments on every deploy, so you can preview how changes look to your site before deploying them to production.

Updated at Mon, Jan 24, 2022