Skip to main content
Version: Next

createSpecializedApp()

Home > @backstage/frontend-app-api > createSpecializedApp

Creates an empty app without any default features. This is a low-level API is intended for use in tests or specialized setups. Typically wou want to use createApp from @backstage/frontend-defaults instead.

Signature:

function createSpecializedApp(options?: {
features?: FrontendFeature[];
config?: ConfigApi;
bindRoutes?(context: {
bind: CreateAppRouteBinder;
}): void;
}): {
createRoot(): JSX.Element;
};

Parameters

ParameterTypeDescription
options{ features?: FrontendFeature[]; config?: ConfigApi; bindRoutes?(context: { bind: CreateAppRouteBinder; }): void; }(Optional)

Returns:

{ createRoot(): JSX.Element; }