Want to take a look at our new docs? Our new docs are now in beta. Have fun!

如何使用 Now.sh 进行部署?

如何使用 Now.sh 进行部署?

使用 now.sh 部署,推荐的 package.json 配置如下:

{
  "name": "my-app",
  "dependencies": {
    "nuxt": "latest"
  },
  "scripts": {
    "dev": "nuxt",
    "build": "nuxt build",
    "start": "nuxt start"
  }
}

运行 now 即可完成部署!

提示: 建议将 .nuxt 加入到 .npmignore.gitignore 中去。