Add next-gen image formats to copy command

The new formats being: `.avif` and `.webp`.
This commit is contained in:
Foster Hangdaan 2024-09-10 08:18:00 -04:00
parent 0a807a96e3
commit 771830a416
Signed by: foster
GPG key ID: E48D7F49A852F112

View file

@ -20,7 +20,13 @@ site.ignore("README.md", "README.org", "LICENSE.txt", "LICENSE.md");
site.copy("static", ".");
site.copy([".png", ".jpg", ".jpeg"]);
site.copy([
".avif",
".jpeg",
".jpg",
".png",
".webp",
]);
site.use(jsx());
site.use(nav());