UNPKG

rsbuild-plugin-react-router

Version:
17 lines (16 loc) 493 B
import type { Route } from './types.js'; /** * Generates the server build module content * @param routes The route manifest * @param options Build options * @returns The generated module content as a string */ declare function generateServerBuild(routes: Record<string, Route>, options: { entryServerPath: string; assetsBuildDirectory: string; basename: string; appDirectory: string; ssr: boolean; federation?: boolean; }): string; export { generateServerBuild };