use regular images thanks

This commit is contained in:
Nycki 2024-09-13 15:46:22 -07:00
parent 8aaa87c977
commit d5905fff2c
2 changed files with 4 additions and 3 deletions

View file

@ -13,7 +13,7 @@ Wow, posting on my phone kinda sucks. My current workflow:
- use **cx file explorer** to view the network drive, upload images, and write a text file (YOU ARE HERE)
{% image "./screenshot.png", "screenshot of this post in a text editor" %}
![a screenshot of a text editor](./screenshot.png)
- go back to termux and push the updated files

View file

@ -18,16 +18,17 @@ module.exports = function(eleventyConfig) {
"./public/": "/",
"./node_modules/prismjs/themes/prism-okaidia.css": "/css/prism-okaidia.css"
});
eleventyConfig.addPassthroughCopy("**/*.png");
// Run Eleventy when these files change:
// https://www.11ty.dev/docs/watch-serve/#add-your-own-watch-targets
// Watch content images for the image pipeline.
eleventyConfig.addWatchTarget("content/**/*.{svg,webp,png,jpeg}");
// eleventyConfig.addWatchTarget("content/**/*.{svg,webp,png,jpeg}");
// App plugins
eleventyConfig.addPlugin(pluginDrafts);
eleventyConfig.addPlugin(pluginImages);
// eleventyConfig.addPlugin(pluginImages);
// Official plugins
eleventyConfig.addPlugin(pluginRss);