Skip to content

Latest commit

 

History

History
 
 

vue

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Vue

In this example we will be deploying a simple "Hello World" example with Vue CLI.

Getting started with Vue

  • Install the Vue CLI:
npm install -g @vue/cli
  • Create your Vue project:
vue create <project name>

Deploy with Now

First we need to create a now.json configuration file to instruct Now how to build the project.

For this example we will be using our newest version Now 2.0.

By adding the version key to the now.json file, we can specify which Now Platform version to use.

We also need to define each builders we would like to use. Builders are modules that take a deployment's source and return an output, consisting of either static files or dynamic Lambdas.

In this case we are going to use @now/static-build to build and deploy our Vue application selecting the package.json as our entry point. We will also define a name for our project (optional). The routes property makes sure requests like /non-existent-page are routed to the Vue index.html.

{
    "version": 2,
    "name": "vue",
    "builds": [
        { "src": "package.json", "use": "@now/static-build" }
    ],
    "routes": [
      {"src": "^/js/(.*)", "dest": "/js/$1"},
      {"src": "^/css/(.*)", "dest": "/css/$1"},
      {"src": "^/img/(.*)", "dest": "/img/$1"},
      {"src": ".*", "dest": "/index.html"}
    ]
}

Visit our documentation for more information on the now.json configuration file.

We also need to include a script in package.json named "now-build" that specifies what command Now will run on the server to "build" your application. Also notice that we are using npm run build that will create a folder called dist which Now identifies as the static folder.

{
    "scripts": {
      ...
      "build": "vue-cli-service build",
      "now-build": "npm run build",
    },
}

We are now ready to deploy the app.

now