zola/docs/content/documentation/deployment/vercel.md
William Desportes afd5da4f64
Improve documentation (#1335)
* Fix "overriden" to "overridden" typo

* Add my website to the EXAMPLES

* HTTPS migration for some links

* Fix #1295 - Document alpine linux version

Fixes: #1295

* Update Zola version on Travis CI example

* Documentation improvements and typo fixes

* Update more example versions and remove the useless variable on the GitLab CI example

* Fix all broken links and theme links
2021-02-03 13:13:49 +01:00

1.1 KiB

+++ title = "Vercel" weight = 50 +++

Vercel (previously zeit) is similar to Netlify, making deployment of sites easy. The sites are hosted by Vercel and automatically deployed whenever we push a commit to our selected production branch (e.g, master).

If you don't have an account with Vercel, you can sign up here.

Automatic deploys

Once you sign up you can import your site from a Git provider (Github, GitLab or Bitbucket). After the import, you can set the settings for your project.

  • Choose Framework Preset as Other
  • Build command as zola build and make sure toggle on Override switch.
  • By default Vercel chooses output directory as public, if you use a different directory then specify output directory.
  • To add your own domain, go to domain setting in left and add it there.

All we have to is include a vercel.json in our project's root directory by specifying the ZOLA_VERSION we want to use to deploy the site.

  {
  "build": {
    "env": {
      "ZOLA_VERSION": "0.13.0"
    }
  }
}

And your site should now be up and running.