From 3e955f308e34f981586763f6e30fc17319cd3e33 Mon Sep 17 00:00:00 2001 From: Pavel 'LEdoian' Turinsky Date: Tue, 7 Mar 2023 17:33:48 +0100 Subject: [PATCH] Support adding auxiliary files Currently only in static and images folders. --- pelicanconf.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pelicanconf.py b/pelicanconf.py index 467024e..7b3105c 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -42,3 +42,8 @@ DEFAULT_PAGINATION = False DELETE_OUTPUT_DIRECTORY = True + +STATIC_PATHS = [ + 'images', + 'static', + ]