
Battle scarred developer's guide to Umbraco v17 - Bundles
With the Early adopters guide we talked about Entry points as the start of your front end code journey, but now with a few tweaks since v14 bundles are where it's at. What's a bundle. A bundle is an extension point in Umbraco's Backoffice that lets you load JavaScript files and register manifests inside Umbraco's system so your code is loaded as part of the Backoffice. Put simply it's the loader of your extension. typically your entry point javascript file will only import manifest from around your project and return them for umbraco to ingest. export const manifests : Array < UmbExtensionManifest > = [ ... entrypoints , ... sectionManifests , ... dashboardManifests , ... localizationManifests , ... menuManifests , ... workspaceManifests , ... editorManifests , ... modalManifests , ]; As your project grows so will this list, to keep it simple and organised i would recommend that at each level you have manifest that might also import from child folders, before finally having everything
Continue reading on Dev.to
Opens in a new tab



