diff options
Diffstat (limited to 'config')
| -rw-r--r-- | config/config.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/config.js b/config/config.js index d16ff2d..476bcfa 100644 --- a/config/config.js +++ b/config/config.js @@ -26,6 +26,7 @@ const internals = {}; module.exports = internals.Config = { maxPosts: Getenv.int('BLOG_MAX_POSTS', 3), postsDirectory: Getenv('BLOG_POSTS_DIRECTORY', Path.resolve(Path.join(__dirname, '../.posts'))), + archiveDirectory: Getenv('BLOG_ARCHIVE_DIRECTORY', Path.resolve(Path.join(__dirname, '../.archive'))), staticDirectory: Getenv('BLOG_STATIC_DIRECTORY', Path.resolve(Path.join(__dirname, '../static'))), templatesDirectory: Getenv('BLOG_TEMPLATES_DIRECTORY', Path.resolve(Path.join(__dirname, '../templates'))) }; |