-
-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failed to load config.yml error message when first logging on to deployed site #6862
Comments
@ItsEthanH which SSG are you using? |
Heya, it's eleventy :) |
I observed the same bug with the Hugo template: decaporg/one-click-hugo-cms#781 |
I had the same issue. It seems Decap is trying to load the config from the root path ( |
I have the same issue also with 11ty. |
Hi everyone, I am today trying to use that CMS, and showing the same problem. It showed me a 404 config.yml not found. Has anyone solved the problem? Thanks |
Not sure if it's helpful, but I use Eleventy and had to manually pass through the config file in the build settings. For eleventy it was adding |
Describe the bug
When deploying a project using DecapCMS, the first time you go to /admin/, an error message shows reading:
Error loading the CMS configuration
Config Errors:
Error: Failed to load config.yml (404)
Check your config.yml file.
It seems as if this is because the URL isn't formatted correctly. Going to /admin/ redirects me to:
When instead I should go to
To Reproduce
Expected behavior
For a user to immediately go to /admin/#/
Screenshots
Broken path and error:
Applicable Versions:
CMS configuration
May not be relevant, as it's been replicated with a range of CMS configurations, however:
backend:
name: git-gateway
branch: main
local_backend: true
logo_url: https://codestitch.app/frontend/images/logo.png
media_folder: "public/assets/images/blog"
public_folder: "/assets/images/blog"
collections:
- name: "blog"
label: "Blog"
folder: "src/content/blog"
create: true
slug: "{{slug}}"
fields:
- { label: "Title", name: "title", widget: "string" }
- { label: "Description", name: "description", widget: "string" }
- { label: "Author", name: "author", widget: "string" }
- { label: "Date", name: "date", widget: "datetime" }
- { label: "Tags", name: "tags", widget: "list", default: ["post"] }
- { label: "Featured Image", name: "image", widget: "image" }
- { label: "Image Caption", name: "imageAlt", widget: "string" }
- { label: "Body", name: "body", widget: "markdown" }
The text was updated successfully, but these errors were encountered: