Load a local Managed Component
You may want WebCM to load a locally developed Managed Component.
- Create a Managed Component if you haven't already 
- Place your Managed Component folder inside the - componentsdirectory
- Edit your config file to include your new local component folder name along with any relevant settings and/or permission grants. - E.g. - export default {
 components: [
 {
 name: "my-local-folder",
 settings: { customSetting1: "cheese" },
 permissions: [],
 },
 // ...other Managed Components
 ],
 // ...rest of the config
 // (see full example at https://github.com/cloudflare/webcm/blob/unstable/example.config.ts)
 }
- Restart your WebCM server ✅