Closed mathiasg12 closed 8 months ago
Please correctly add the new entry for "CND" to the astro.config.mjs file under the sidebar configuration, you should include it following the existing format. Here's how the updated section should look:
sidebar: [ { label: "AI/ML Frameworks", collapsed: true, autogenerate: { directory: "ai-ml" } }, { label: "Akamai", collapsed: true, autogenerate: { directory: "akamai" } }, { label: "Amazon", collapsed: true, autogenerate: { directory: "amazon" } }, { label: "BaaS", collapsed: true, autogenerate: { directory: "baas" } }, { label: "CND", collapsed: true, autogenerate: { directory: "cnd" } }, // Added entry ]
Note the correction in the directory name for "CND" from "CND" to "cnd" to maintain consistency in naming conventions (assuming your directories are named in lowercase). If your directories are actually named with uppercase letters, you should adjust the directory value to match the exact case of your directory names.
thank you for feedback, I have now added an entry in the astro.config.mjs
Please correctly add the new entry for "CND" to the astro.config.mjs file under the sidebar configuration, you should include it following the existing format. Here's how the updated section should look:
sidebar: [ { label: "AI/ML Frameworks", collapsed: true, autogenerate: { directory: "ai-ml" } }, { label: "Akamai", collapsed: true, autogenerate: { directory: "akamai" } }, { label: "Amazon", collapsed: true, autogenerate: { directory: "amazon" } }, { label: "BaaS", collapsed: true, autogenerate: { directory: "baas" } }, { label: "CND", collapsed: true, autogenerate: { directory: "cnd" } }, // Added entry ]
Note the correction in the directory name for "CND" from "CND" to "cnd" to maintain consistency in naming conventions (assuming your directories are named in lowercase). If your directories are actually named with uppercase letters, you should adjust the directory value to match the exact case of your directory names.