Skip to content

Commit 1b1ca4d

Browse files
Update 16/umbraco-cms/customizing/extending-overview/extension-registry/register-extensions.md
Co-authored-by: Richard Jackson <[email protected]>
1 parent 4e94f22 commit 1b1ca4d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

16/umbraco-cms/customizing/extending-overview/extension-registry/register-extensions.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,13 @@ Instead of registering each manifest in the `umbraco-package.json`, you can have
9494
The Entry Point is an extension that executes a method on startup. You can use this for different tasks, such as performing initial configuration and registering other Extension Manifests. Read more in [the entry point approach](../extension-types/backoffice-entry-point.md).
9595

9696
### Registration with JavaScript on the Fly
97-
In some cases, extensions are not static and cannot be registered in the umbraco-package.json or in a bundle. For instance, your manifest might be defined based on information from the server, or you might generate the manifests server side based on data in the database. In that case, you need to register extensions on the fly.
97+
In some cases, extensions are not static and cannot be registered in the umbraco-package.json or in a bundle. Here are some examples of these cases:
98+
99+
- your manifest might be defined based on information from the server
100+
- you might generate the manifests server side based on data in the database.
101+
102+
In cases such as these, you need to register extensions on the fly.
103+
98104

99105
The following example shows how to register an Extension Manifest via JavaScript/TypeScript code:
100106

0 commit comments

Comments
 (0)