Skip to content

Instantly share code, notes, and snippets.

@jshwlkr
Last active August 14, 2022 22:21
Show Gist options
  • Save jshwlkr/3535f9b38932a3b675e3a933289083f7 to your computer and use it in GitHub Desktop.
Save jshwlkr/3535f9b38932a3b675e3a933289083f7 to your computer and use it in GitHub Desktop.
Preventing drafts from being published in Eleventy.
module.exports = {
eleventyComputed: {
tags: data => {
if(!data.draft) return 'posts';
return '';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment