웹 컴포넌트 기반 마이크로 프론트엔드 구현
핵심 아키텍처 설계
마이크로 프론트엔드 구성 요소
interface MicroAppConfig {
appId: string;
entryPoint: string;
mountSelector: string;
activationPath: string;
customProps?: Record<string, unknown>;
}
interface ComponentOptions {
elementName: string;
useShadow?: boolean;
externalStyles?: string[];
}
class MicroFrontend {
...
7월 12일 00:48에 게시됨