diff --git a/.eleventy.js b/.eleventy.js index 405c53d9..d7538068 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -19,11 +19,13 @@ module.exports = function (eleventyConfig) { // tailwind watches eleventyConfig.addWatchTarget('./tailwind.config.js') - eleventyConfig.addWatchTarget('./tailwind.css') + eleventyConfig.addWatchTarget('./tailwind.css') - eleventyConfig.addShortcode('version', function () { - return now - }) + // passthrough + eleventyConfig.addPassthroughCopy("src/assets"); + + // shortcodes + eleventyConfig.addShortcode('version', () => now) // filters Object.keys(filters).forEach((filterName) => { diff --git a/src/assets/img/posts/mailbox.jpg b/src/assets/img/posts/mailbox.jpg deleted file mode 100644 index fdeecb62..00000000 Binary files a/src/assets/img/posts/mailbox.jpg and /dev/null differ