All checks were successful
Build and copy to prod / build-and-copy (push) Successful in 3m19s
8 lines
384 B
JavaScript
8 lines
384 B
JavaScript
export default function (eleventyConfig) {
|
|
eleventyConfig.addCollection('posts',collectionApi =>
|
|
collectionApi.getFilteredByTag("posts")
|
|
.filter(p => process.env.DEBUG || !p.data.tags.includes("draft"))
|
|
.filter(p => process.env.DEBUG || p.date < new Date())
|
|
.filter(p => process.env.DEBUG || !p.data.tags.includes("unlisted"))
|
|
);
|
|
} |