I am trying to load a lazy-loaded application from a server
localhost://4600
inside a client application
localhost://3000
as an angular-element using ngx-build-plus, but when I load the angular element it fetches chunks using the client url(localhost://3000) instead of the server url. is it possible to fetch the chunk files from the server((localhost://4600) the code in the server
{
path: 'settings',
loadChildren: async () => import('./settings/settings.module').then(m => m.SettingsModule)
}