UNPKG

rwsdk

Version:

Build fast, server-driven webapps on Cloudflare with SSR, RSC, and realtime

13 lines (12 loc) 364 B
import { InlineConfig } from "vite"; export type RedwoodPluginOptions = { silent?: boolean; rootDir?: string; mode?: "development" | "production"; configPath?: string; entry?: { client?: string; worker?: string; }; }; export declare const redwoodPlugin: (options?: RedwoodPluginOptions) => Promise<InlineConfig["plugins"]>;