rwsdk
Version:
Build fast, server-driven webapps on Cloudflare with SSR, RSC, and realtime
11 lines (10 loc) • 355 B
text/typescript
import type { EnvironmentOptions } from "vite";
interface OptimizeDepsPlugin {
name: string;
resolveId?: (id: string, importer: string | undefined, opts: {
kind: string;
}) => any;
load?: (id: string) => any;
}
export declare function addOptimizeDepsPlugin(config: EnvironmentOptions, plugin: OptimizeDepsPlugin): void;
export {};