move entry point manifest to bundle

This commit is contained in:
Mads Rasmussen
2023-11-09 22:04:40 +01:00
parent cf267d14f2
commit 59234f8841
2 changed files with 6 additions and 6 deletions

View File

@@ -17,4 +17,10 @@ export const manifests = [
...currentUserManifests,
...userPermissionManifests,
...modalManifests,
{
name: 'User Management Entry Point',
alias: 'Umb.EntryPoint.UserManagement',
type: 'entryPoint',
loader: () => import('./entry-point.js'),
},
];

View File

@@ -7,10 +7,4 @@ export const extensions = [
type: 'bundle',
loader: () => import('./manifests.js'),
},
{
name: 'User Management Entry Point',
alias: 'Umb.EntryPoint.UserManagement',
type: 'entryPoint',
loader: () => import('./entry-point.js'),
},
];