From b815ae86f85821cb27733ecb0a3b7e6c61241a81 Mon Sep 17 00:00:00 2001 From: Foster Hangdaan Date: Mon, 2 Oct 2023 19:41:35 -0400 Subject: [PATCH] Add ignore rule for "LICENSE.md" --- _config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_config.ts b/_config.ts index 4014d65..7356cc9 100644 --- a/_config.ts +++ b/_config.ts @@ -11,7 +11,7 @@ const site = lume({ }, }); -site.ignore("README.md", "README.org", "LICENSE.txt"); +site.ignore("README.md", "README.org", "LICENSE.txt", "LICENSE.md"); site.copy("static", ".");