/** * Vite plugin: client-side build route rendering. * * During `vite build`, this spins up a temporary dev server to render * all routes into static HTML, then populates shared state with the * rendered routes and input list. * * The actual HTML route resolution and asset collection are handled by * separate Vite plugins (see `plugin-html-routes-build.ts`) that read * from shared state and use `applyToEnvironment` to scope to the client. * * @internal */ import { type PluginOption } from 'vite'; import { type PluginSharedState } from './plugin-shared-state.js'; export declare function gracileClientBuildPlugin({ state, virtualRoutesForClient, }: { state: PluginSharedState; virtualRoutesForClient: PluginOption; }): PluginOption; //# sourceMappingURL=plugin-client-build.d.ts.map