Developerayo / nuxtjs-app-to-now

:fire::rocket:Deploying a Nuxt.js app with ZEIT Now

Home Page:https://deploying-a-nuxtjs-app-with-zeit-now-oj892hphj.now.sh/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Deploying a Statically Generated Nuxt.js app with Now .

Greenkeeper badge

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 Nuxt application selecting the package.json as our entry point. We will also define a name for our project (optional).

{
  "version": 2,
  "name": "my-nuxt-project",
  "builds": [
    { "src": "package.json", "use": "@now/static-build" }
  ]
}

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": "nuxt build",
      "now-build": "nuxt build --spa"
    },
}

We are now ready to deploy the app.

now

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

About

:fire::rocket:Deploying a Nuxt.js app with ZEIT Now

https://deploying-a-nuxtjs-app-with-zeit-now-oj892hphj.now.sh/


Languages

Language:Vue 81.6%Language:JavaScript 18.4%