[Vuejs]-Nuxtjs / vuejs / nodejs, what to upload

0👍

For deploying you application there different steps available in the official docs. Here is the available options in nuxt.

Also check this commands and deployments for nuxtjs.

Server Deployment

To deploy a SSR application we use target: ‘server’, where server is the default value.

npm run build

Nuxt will create a .nuxt directory with everything inside ready to be deployed on your server hosting.

Once your application is built you can use the start command to see a production version of your application.

npm run start

Static Deployment (Pre-rendered)

Nuxt gives you the ability to host your web application on any static hosting.

To deploy a static generated site make sure you have target: ‘static’ in your nuxt.config.js (for Nuxt >= 2.13):

// nuxt.config.js

export default {
  target: 'static'
}

npm run generate

Nuxt will create a dist/ directory with everything inside ready to be deployed on a static hosting service.

Leave a comment