From b95a7176622459ecbbacba200e9ce1fccb511a07 Mon Sep 17 00:00:00 2001 From: Manuel Henke <manuel.henke@yahoo.de> Date: Tue, 6 Sep 2022 20:47:55 +0200 Subject: [PATCH] chore: exclude `vendor/` in Jekyll config (#941) Building the jekyll site on your own in GitHub workflows fails due missing exclude of `vendor` in `_config.yml`. If someone reuses your `_config.yml` he/she will come across some issues. Reference: https://github.com/jekyll/jekyll/issues/5267#issuecomment-241379902 --- _config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index 24874037..c9cd27ad 100644 --- a/_config.yml +++ b/_config.yml @@ -19,7 +19,7 @@ baseurl: "/just-the-docs" # the subpath of your site, e.g. /blog url: "https://just-the-docs.github.io" # the base hostname & protocol for your site, e.g. http://example.com permalink: pretty -exclude: ["node_modules/", "*.gemspec", "*.gem", "Gemfile", "Gemfile.lock", "package.json", "package-lock.json", "script/", "LICENSE.txt", "lib/", "bin/", "README.md", "Rakefile"] +exclude: ["node_modules/", "*.gemspec", "*.gem", "Gemfile", "Gemfile.lock", "package.json", "package-lock.json", "script/", "LICENSE.txt", "lib/", "bin/", "README.md", "Rakefile", "vendor"] # Set a path/url to a logo that will be displayed instead of the title #logo: "/assets/images/just-the-docs.png" -- GitLab