Easy integration of icestark micro-frontends framework with icejs applications
70
A host configuration that wires micro apps through a customizable router and shared layout while supporting runtime app list changes.
@generates
export interface MicroAppConfig {
name: string;
title?: string;
url: string;
routes: string[];
}
export interface HostOptions {
apps: MicroAppConfig[];
extraProps?: Record<string, unknown>;
}
export function createHostConfig(options: HostOptions): unknown;Provides framework configuration helpers for routing micro apps and wrapping them with host layouts.
Install with Tessl CLI
npx tessl i tessl/npm-ice--plugin-icestarkdocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10