import { manifests as entrypoints } from "./entrypoints/manifest.js"; //#if IncludeExample import { manifests as dashboards } from "./dashboards/manifest.js"; //#endif // Job of the bundle is to collate all the manifests from different parts of the extension and load other manifests // We load this bundle from umbraco-package.json export const manifests: Array = [ ...entrypoints, //#if IncludeExample ...dashboards, //#endif ];