diff --git a/gatsby-node.js b/gatsby-node.js index 3abded6b5..08bc085bb 100644 --- a/gatsby-node.js +++ b/gatsby-node.js @@ -189,7 +189,7 @@ exports.onCreateNode = ({node, boundActionCreators, getNode}) => { const day = match[3]; const filename = match[4]; - slug = `/blog/${year}/${month}/${day}/${filename}.html`; + slug = `blog/${year}/${month}/${day}/${filename}.html`; const date = new Date(year, month - 1, day);