Add next-gen image formats to copy
command
The new formats being: `.avif` and `.webp`.
This commit is contained in:
parent
0a807a96e3
commit
771830a416
1 changed files with 7 additions and 1 deletions
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue