vanilla-native-federation
Version:
A lightweight **runtime micro frontend orchestrator** that loads micro frontends built with native federation into any web page. Unlike other solutions, it caches dependencies across page reloads, making it perfect for traditional server-rendered apps (PH
11 lines (10 loc) • 311 B
TypeScript
export type ModeProfileConfig = {
latestSharedExternal: boolean;
overrideCachedRemotes: 'always' | 'never' | 'init-only';
overrideCachedRemotesIfURLMatches: boolean;
};
export type ModeConfig = {
strict: boolean;
profile: ModeProfileConfig;
};
export type ModeOptions = Partial<ModeConfig>;