如何解决如何在@11ty/eleventy-img 中为我处理的图像指定 outputDir?
我正在尝试为经过 eleventy-img
的已处理图像指定输出目录。
const Image = require("@11ty/eleventy-img");
(async () => {
let url = "./img/home/";
let stats = await Image(url,{
widths: [300],outputDir: "./img/processed/",});
console.log(stats);
})();
但是当我运行 npx eleventy
Unhandled rejection in promise ([object Promise]): (more in DEBUG output)
> Input file contains unsupported image format
`Error` was thrown:
Error: Input file contains unsupported image format
它在没有指定 outputDir
选项的情况下工作正常。
这是它的文档:this
没有使用它的实际示例,但从逻辑上讲,它应该以与 widths
参数相同的方式传递。
解决方法
我发现了我的错误。我试图用 "./img/home/"
传递整个文件夹。相反,我需要传递单个图像,然后它才能工作。
像这样:
const Image = require("@11ty/eleventy-img");
(async () => {
let url = "./img/home/my-image.jpg";
let stats = await Image(url,{
widths: [300],outputDir: "./img/processed",});
console.log(stats);
})();
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。