How to avoid that draft markdown files get published in eleventy 11ty site
•
1 min read
To prevent draft Markdown files from being published on an Eleventy (11ty) site, you can easily control this by adding a specific setting in the frontmatter of your Markdown files.
Simply include this in the frontmatter of the draft files:
permalink: false
Simple as that!