UNPKG

antwar-minimal-boilerplate

Version:
41 lines (38 loc) 823 B
'use strict'; module.exports = { output: 'build', name: 'Antwar minimal boilerplate', author: { name: 'Dr A N Twar', email: 'antwar@antwar.com' }, deploy: { branch: 'gh-pages', }, theme: { name: 'antwar-minimal-theme', navigation: [ {title: 'Home', path: '/'}, {title: 'Blog', path: '/blog'}, {title: 'Page', path: '/page'}, {title: 'MarkdownPage', path: '/markdownpage'} ] }, paths: { '/': { path: function() { return require.context('./pages'); } }, blog: { title: 'Blog posts', layout: 'blog', path: function() { return require.context('./posts', true, /^\.\/.*\.md$/); }, draft: function() { return require.context('./drafts', true, /^\.\/.*\.md$/); }, } }, };