我正在尝试为经过处理的图像指定一个输出目录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
指定选项,它可以正常工作。这是它的文档:https ://www.11ty.dev/docs/plugins/image/#output-directory
没有使用它的实际示例,但从逻辑上讲,它应该以与widths
参数相同的方式传递。