Skip to main content

On this page

Overview

Deployment

On this page

Overview

Slinkity projects can be hosted on any of the common Jamstack hosting providers such as Netlify and Vercel. If you're already hosting your site using 11ty, there's nothing to update! Still, we'll include deployment instructions here to be thorough.

Create a netlify.toml file.

touch netlify.toml

Include npx eleventy for the build command and _site for the publish directory.

[build]
command = "npx eleventy"
publish = "_site"