UNPKG

@vercel/microfrontends

Version:

Defines configuration and utilities for microfrontends development

13 lines (10 loc) 370 B
import { Config } from '@sveltejs/kit'; interface WithMicrofrontendsOptions { /** * Explicitly set the name of the application instead of using the name from the package.json. */ appName?: string; configPath?: string; } declare function withMicrofrontends(config: Config, opts?: WithMicrofrontendsOptions): Config; export { withMicrofrontends };