diff options
author | Karl Hallsby <karl@hallsby.com> | 2020-08-07 15:46:39 -0500 |
---|---|---|
committer | Karl Hallsby <karl@hallsby.com> | 2020-08-07 15:46:39 -0500 |
commit | a5918e63f78a009c7777067b0a0a20378496ea2d (patch) | |
tree | 0ef001ceb3e1b6f594c3180fe67d92a47e0c80d6 | |
parent | ad574a23ed1eee5d5405a70260c8fc51bfb3e475 (diff) |
Exclude nix files and scripts from output website
-rw-r--r-- | _config.yml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/_config.yml b/_config.yml index 06913ab..3ebb6f3 100644 --- a/_config.yml +++ b/_config.yml @@ -55,12 +55,14 @@ plugins: # Excluded items can be processed by explicitly listing the directories or # their entries' file path in the `include:` list. # -# exclude: -# - .sass-cache/ -# - .jekyll-cache/ -# - gemfiles/ -# - Gemfile -# - Gemfile.lock +exclude: + - .sass-cache/ + - .jekyll-cache/ + - gemfiles/ + - Gemfile + - Gemfile.lock + - '*.nix' + - scripts/ # - node_modules/ # - vendor/bundle/ # - vendor/cache/ |