fixes #1208
@ -147,9 +147,11 @@ module.exports = async ({graphql, actions}) => {
const newestBlogNode = newestBlogEntry.data.allMarkdownRemark.edges[0].node;
// Blog landing page should always show the most recent blog entry.
['/blog/', '/blog'].map(slug => {
createRedirect({
fromPath: '/blog/',
fromPath: slug,
redirectInBrowser: true,
toPath: newestBlogNode.fields.slug,
});
};