From b29733d4fdbf3b66f91cb4d47216d4b769edde9f Mon Sep 17 00:00:00 2001 From: David Saeger <67335915+david-saeger@users.noreply.github.com> Date: Wed, 10 Feb 2021 09:35:07 -0500 Subject: [PATCH] adds public folder path which replaces relative paths in markdown (#420) --- src/cms/posts.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cms/posts.tsx b/src/cms/posts.tsx index a3fc32a2..7ca5cfde 100644 --- a/src/cms/posts.tsx +++ b/src/cms/posts.tsx @@ -20,6 +20,7 @@ export const PostCollection: CmsCollection = { label_singular: "Blog Post", description: "Blog Posts from the DDS team.", folder: "content/posts", + public_folder: "", slug: "{{year}}-{{month}}-{{slug}}", summary: entrySummaryFormat, create: true,