Move source files into a subfolder

This commit is contained in:
Foster Hangdaan 2024-09-10 07:01:50 -04:00
parent f6373b584e
commit 40c11c848a
Signed by: foster
GPG key ID: E48D7F49A852F112
43 changed files with 2 additions and 1 deletions

View file

@ -12,12 +12,13 @@ import lang_javascript from "npm:highlight.js/lib/languages/javascript";
import lang_bash from "npm:highlight.js/lib/languages/bash"; import lang_bash from "npm:highlight.js/lib/languages/bash";
const site = lume({ const site = lume({
src: "./src",
location: new URL("https://www.fosterhangdaan.com/"), location: new URL("https://www.fosterhangdaan.com/"),
}); });
site.ignore("README.md", "README.org", "LICENSE.txt", "LICENSE.md"); site.ignore("README.md", "README.org", "LICENSE.txt", "LICENSE.md");
site.copy("static", "."); site.copy("src/static", ".");
site.copy([".png", ".jpg", ".jpeg"]); site.copy([".png", ".jpg", ".jpeg"]);