UNPKG

@gez/rspack

Version:

A high-performance Rspack integration for Gez microfrontend framework, providing module federation and SSR capabilities.

9 lines (8 loc) 366 B
import type { Gez } from '@gez/core'; import { type RspackOptions } from '@rspack/core'; import type { RspackAppOptions } from './app'; import type { BuildTarget } from './build-target'; /** * 构建 Client、Server、Node 的基础配置 */ export declare function createRspackConfig(gez: Gez, buildTarget: BuildTarget, options: RspackAppOptions): RspackOptions;