From 3ab1c078ec0cea9252ee1dd6fcfa03b005d3dbc9 Mon Sep 17 00:00:00 2001 From: Dillon Kearns Date: Sat, 28 Sep 2019 10:03:29 -0700 Subject: [PATCH] Update folder paths for netlify config. --- examples/docs/static/admin/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/docs/static/admin/config.yml b/examples/docs/static/admin/config.yml index b5e22c92..2df6303b 100644 --- a/examples/docs/static/admin/config.yml +++ b/examples/docs/static/admin/config.yml @@ -1,14 +1,14 @@ backend: name: git-gateway -media_folder: "images" # Folder where user uploaded files should go -public_folder: "images" +media_folder: "examples/docs/images" # Folder where user uploaded files should go +public_folder: "examples/docs/images" publish_mode: "editorial_workflow" # see https://www.netlifycms.org/docs/open-authoring/ collections: # A list of collections the CMS should be able to edit - name: "post" # Used in routes, ie.: /admin/collections/:slug/edit label: "Post" # Used in the UI, ie.: "New Post" - folder: "content/blog" # The path to the folder where the documents are stored + folder: "examples/docs/content/blog" # The path to the folder where the documents are stored create: true # Allow users to create new documents in this collection fields: # The fields each document in this collection have - { label: "Title", name: "title", widget: "string" }