You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
single-spa-angular now can bootstrap applications with standalone components. The bootstrapFunction allowed bootstrapping application by calling platformBrowserDynamic(getSingleSpaExtraProviders()).bootstrapModule(...). It's possible to call bootstrapApplication(...) now which bootstraps the standalone component (marked with standalone: true). Unfortunately, since the bootstrapApplication is in developer preview, it's not possible to pass platform providers to bootstrapApplication; thus getSingleSpaExtraProviders cannot be called. (ffa487c)